Sunday, December 11, 2011

How to have multiple lines in a msgbox in VB 2008?

well how do i do it?How to have multiple lines in a msgbox in VB 2008?
MsgBox(';Hello'; + vbCrLf + ';World';)How to have multiple lines in a msgbox in VB 2008?
You can also use:



Msgbox(';Hello'; %26amp; Chr(10) %26amp; ';World';)

No comments:

Post a Comment