Label.caption = "" help

  • Thread starter Thread starter Angelsnecropolis
  • Start date Start date
A

Angelsnecropolis

In coding, how do I change the text to go down a line for caption?

Example:
Label1.caption = "Line 1
Line 2
Line 3"

Thanks for the help ^_^
 
Angelsnecropolis said:
In coding, how do I change the text to go down a line for caption?

Example:
Label1.caption = "Line 1
Line 2
Line 3"


Try:

Me.Label1.Caption = _
"Line1" & vbCrLf & "Line2" & vbCrLf & "Line3"
 
Back
Top