Hello,
I have a string which i need to display in 3 lines.
I want above text to appear in 3 lines, but no matter what i do, it appears in single line. I cant have three labels as whole situation is very complex then i have given above.
I have tried 'ControlChars.N ewLine', 'vbCr', 'vbCrLf' but nothing seems to be working.
I wonder if we can actually acheive this in VB.Net.
I hope someone will be point me in right direction.
Thanks
Jay
I have a string which i need to display in 3 lines.
Code:
i.e. Label.Text = "a" & vbCrLf & "b" & vbCrLf & "c"
I have tried 'ControlChars.N ewLine', 'vbCr', 'vbCrLf' but nothing seems to be working.
I wonder if we can actually acheive this in VB.Net.
I hope someone will be point me in right direction.
Thanks
Jay
Comment