Ok.. I am stumped on this one. I want to populate a text box each time a button is pressed but when I do that, it wants to overwrite the same line each time instead of doing a new line.
example:
textbox1.text = name
It puts the name in the text box
then when I increment the array and put the next name in textbox1 it overwrites the name i had in there instead of going down a new line and then printing it.
I have tried
textbox1.text = name + vbnewline
or
textbox1.text = name + Chr(13)
Nothing seems to work.
I have the textbox propertiesset at multiline and wrodwrap off
any clues?
Thanks
Mike
example:
textbox1.text = name
It puts the name in the text box
then when I increment the array and put the next name in textbox1 it overwrites the name i had in there instead of going down a new line and then printing it.
I have tried
textbox1.text = name + vbnewline
or
textbox1.text = name + Chr(13)
Nothing seems to work.
I have the textbox propertiesset at multiline and wrodwrap off
any clues?
Thanks
Mike