How do you make an enter space in msgbox? I'd like the layout to be something like this,
Hello My name is Edmund.
His name is Edwin.
Wait, my name is actually Eddy.
![]()
Sub CommandButton1_Click() MsgBox ("Hello My name is Edmund") End Sub
How do you make an enter space in msgbox? I'd like the layout to be something like this,
Hello My name is Edmund.
His name is Edwin.
Wait, my name is actually Eddy.
![]()
Sub CommandButton1_Click() MsgBox ("Hello My name is Edmund") End Sub
Last edited by eddykk; 02-18-2009 at 02:28 AM.
For readability, you'd typically see it like this:![]()
MsgBox ("Hello My name is Edmund" & vbLf & "Next line " & vbLf & "Next line")
![]()
MsgBox ("Hello My name is Edmund" & vbLf & _ "Next line " & vbLf & _ "Next line")
Entia non sunt multiplicanda sine necessitate
Ah thanks a bunch shg.![]()
There are currently 1 users browsing this thread. (0 members and 1 guests)
Bookmarks