New line in label

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

I want to start a new line in label, how do i do it. currently my code is:
lable.text = "this is a test" + "123"
and it displays like this. 'this is a tes 123'

and I want it to display as:
'this is a test'
'123'
 
Ithaqua said:
I want to start a new line in label, how do i do it. currently my code is:
lable.text = "this is a test" + "123"
and it displays like this. 'this is a tes 123'

and I want it to display as:
'this is a test'
'123'

\\\
Me.Label1.Text = "Hello" & Environment.NewLine & "World"
///
 
Back
Top