Posted: Fri Nov 24, 2006 1:26 pm Post subject: displaying Text in a scrolling text box...
How would you display text in a scrolling text box without either overwriting the existing text inside the text box or just being stuck right beside it? I know that calling...
vb6:
txtDisplay.Text = "woot"
txtDisplay.Text = "lol"
...will just output lol because it will overwrite the existing string inside the text box, but calling...
Glad to see you figured it out. I'll just add for other people that to use vbNewLine you must ensure that the property on your textbox is set to multiline enabled.
Shaun Dreclin
Posted: Tue Dec 12, 2006 9:46 pm Post subject: (No subject)
Oh.. The many many times I have spent hours trying to figure out why new lines werent working.. The many many times I realised I forgot to set the text box to multi line..
cool dude
Posted: Wed Dec 13, 2006 3:25 pm Post subject: (No subject)
Shaun Dreclin wrote:
Oh.. The many many times I have spent hours trying to figure out why new lines werent working.. The many many times I realised I forgot to set the text box to multi line..