I remember we has lessons before in VB.NET that naa &nb**** na imung ibutang sa text para munxt line.
Like
Hello
World
Can be types as Hello &nb*** Wolrd . Kalimut ko what to, need help kung what gani to sya
I remember we has lessons before in VB.NET that naa &nb**** na imung ibutang sa text para munxt line.
Like
Hello
World
Can be types as Hello &nb*** Wolrd . Kalimut ko what to, need help kung what gani to sya
VbCrLf ?
Right. It is correct!!Originally Posted by silent-kill
Ex: Textbox = "Hello" & vbCrLf & "World!"
vbCrLf is a constant that contains chr(13) + chr(10) or Carriage Return (CR) + Linefeed (LF)
You could also do this : Textbox = "Hello" & chr(13) & chr(10) & "World!"
Thanks so much
Similar Threads |
|