how can you put a carraige return - chr(13)- in a textbox? i only get a black box representation. I dont want to put a tonne of spaces in but need to go onto the next line, help please!
Printable View
how can you put a carraige return - chr(13)- in a textbox? i only get a black box representation. I dont want to put a tonne of spaces in but need to go onto the next line, help please!
As far as i understood ur question the answer is very simple . Make the multiline property of the textbox True.
I think ur problem will be solved by this.
Hi,
Try by setting the multiline property of the textbox to true and pressing the enter key. It works fine.
Bye,
Venkat :)
he, you can use 'vbCr' or 'vbCrLf' (a VB constant) instead of 'chr(13)'. That makes it easier to remember, isn't it!?