Sheesh, this must be easy but I just can't get it to work.
I want to print mulitple lines of text into a text box but all I ever get is the last line. Here's my code:
Counter = 0
For Counter = 1 To 6
Counter = Counter + 1
txtTextArea.Text = Counter
Print ""
Next Counter
The multiline property of txtTextArea is set to True.
I want to print mulitple lines of text into a text box but all I ever get is the last line. Here's my code:
Counter = 0
For Counter = 1 To 6
Counter = Counter + 1
txtTextArea.Text = Counter
Print ""
Next Counter
The multiline property of txtTextArea is set to True.