Carriage Return

  • Thread starter Thread starter Justin
  • Start date Start date
J

Justin

I want to create a text field that displays all the records a user has
selected to change. I want each record to be on a seperate line in the text
field. What is the code to enter a carriage return?
 
Justin said:
I want to create a text field that displays all the records a user has
selected to change. I want each record to be on a seperate line in the
text
field. What is the code to enter a carriage return?

Text1 = "Qwertyuiop" & vbCrLf & "Asdfghjkl"

would display:

Qwertyuiop
Asdfghjkl
 
Back
Top