Hello. I'm putting output to a textbox just to show what's happening in my program. I want to be able to keep the old text in the box, and also go to a new line. I can keep the old text just by :
testbox.text = testbox.text & "<new text>"
And I thought that to start it on a new line I could go
CR = chr$(13)
testbox.text = testbox.text & "<new text>" & CR
But that doesn't work, it just puts a | in there and keeps writing in the textbox where it left off. (btw, the multiline property is enabled for the textbox).
Anyone have any ideas?
Thanks,
demoniac
)
testbox.text = testbox.text & "<new text>"
And I thought that to start it on a new line I could go
CR = chr$(13)
testbox.text = testbox.text & "<new text>" & CR
But that doesn't work, it just puts a | in there and keeps writing in the textbox where it left off. (btw, the multiline property is enabled for the textbox).
Anyone have any ideas?
Thanks,
demoniac