-
I have some variables i would like to put in a textbox, for example when the user types in something to another textbox it stores a variable and when you click a button the text displays something like this...
text1.text "This is a variable " & myvar
I want to be able to put a newline tag or something in there like this...
text1.text "This is my" & newline & "variable " & myvar
something to that nature.. if anyone could help i would really appreciate it.. someone else told me that it can be done with the CHR() tag??? PLZ HELP
------------------
- azpc
-
Hey- First make sure the "multiline" property of your textbox = true, then its
txt1.text = "This is a Variable" & vbcrlf & "variable" & myvar
vbcrlf stands for carrige-return/line-feed (correct me if im wrong on this) and will make a new line in a text box.
Thnx For Your Time,
CarlosTheJackal
-
Thanks a lot it worked...
I didnt have the multiline on... i tried that before and thats why it didnt work. Thanx for helping
------------------
- azpc