String - How to continue in the next line

S

Sharon

Hi,

I have a field initiallized with a text.
How can I continue in the next line - do "enter" to a
string variable?
 
K

Ken Snell

Not sure what you mean. You want to append to an existing string, but have
it start on the next line? The vbCrLf can be used to start a new line:

MyText = MyOldText & vbCrLf & "My new text here starts on the next line."
 
Top