How does one insert text that contains carriage returns into a textbox? (textbox in on an access form)
Printable View
How does one insert text that contains carriage returns into a textbox? (textbox in on an access form)
text1.text = "abcdef" & vbcrlf
This will do..
Dunno much about Access, but don't forget to set the textbox multiline property to true.
Cheers gusy - Martin has resolved this in 'Spell Check a Textbox"