First off, thanks for a great site! i never even knew "hacking" could be ethical until i found this site! which in turn has made me want to learn some programming

ok, so far im learning how to drag and drop :s.. but, you have to start somewhere

some background stuff... i have actually written some code in VB(added 4 statements lol) to make a program that outputs whatever text you input into a text box and it will repeat it every second(or whatever) until you click stop...
I am trying this in Visual Basic code using Visual Studio 2010
the UI comprises of a start button, stop button, and a text box..
added a timer,
added SendKeys.Send(TextBox1.Text) and
SendKeys.Send("{Enter}") to the timer... and
added Timer.Start() and Timer.Stop() to the start and stop button... that was simple with a tutorial i followed..
so now i can do that without even looking at a tutorial.... natural progression has made me try adding a load of TextBox's so i could enter say "My Name" in box one, then "FirstLineOfMyAddress" in box two then "SecondLineOfMyAddress" in box 3 etc etc etc.. so it would out putlike this in notepad/word/etc:
My Name
FirstLineOfMyAddress
SecondLineOfMyAddress
etc etc etc etc
many many thanks for your help... i will add the code i have so far below so you have an idea what im doing...
-----------------
Public Class Form1
Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs)
Timer1.Start()
End Sub
Private Sub Timer1_Tick(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Timer1.Tick
SendKeys.Send(TextBox1.Text)
SendKeys.Send("{Enter}")
End Sub
Private Sub Button2_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button2.Click
Timer1.Stop()
End Sub
End Class
----------------
it would be nice to have like 10 TextBox's so that they output with a slight delay.. i.e.
output TextBox1.Text
Pause for 250
output TextBox2.Text
Pause for 250
etc etc
because i noticed that when i "tried" setting up multiple TextBox's each with a timer (i was experimenting

) that it was just mayhem lol! no order at all!
P.S I am VERY new to code, (a day old lol) so be gentle.. dont bite my head off lol.. getting annoyed at the internet for those damn children that should be doing homework not trolling everyone...