Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations SkipVought on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

MsgBox -- Creating next line?

Status
Not open for further replies.

Ovatvvon

Programmer
Feb 1, 2001
1,514
0
0
US
Knowledge:
In javscript, in an alert (equivelant to msgbox), to create another line in the box, you insert a '\n' into the code.

i.e.
alert("This is my box. \nThis is on the 2nd line! \nAnd this is the third line!!");


Question:
Does anyone know what the equiv is in vb/script to create another line in the msgbox?

Thank you!!

-Ovatvvon
 
MsgBox ("This is the first line" & vbNewLine & "This is the second line")
David Paulson


 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top