Is there a way to have a textbox where it can be multiline and it can add text to each line? Where each time i tell it its caption it can add it to a new line?
Printable View
Is there a way to have a textbox where it can be multiline and it can add text to each line? Where each time i tell it its caption it can add it to a new line?
Yeah. Make it's MULTILINE property to TRUE. Then when you want to add text to it do this: text1.text = text1.text & vbcrlf & "your new text"
I mad it multiline and i have a question is there a way to add a scrollbar so when it get so bottom it can add a scrollbar.
There is a property called SCROLLBARS. Dude, take a few minutes to see what the properties for a textbox are. Your questions are something you should be able to do by yourself.