my question is this...
HTML tag <br> = soft Return
In Visual Basic I'm trying to get an output message to print 3 lines on screen, like this:
Line 1 here
Line 2 here
Line 3 here
instead of this:
Line 1 here Line 2 here Line 3 Here
I'm using a label, to display the message. my question is, how to brake between each phrase.
HTML ----------------------------------------
Line one here <br>
line 2 here <br>
line 3 here <br>
Thank you in advance :)
