Multiple Line Msgbox

How do you make a message box with different lines for the message like

Hi,

Its me

Can I do this?

I cant get VBE to do this like I did with VB6

Davids Learning

[196 byte] By [DavidsLearning] at [2007-12-22]
# 1
It works the same way:
MsgBox("Hi" + vbCrLf + "It's me" + vbCrLf + "Can I do this?")

nobugz at 2007-8-30 > top of Msdn Tech,Visual Basic,Visual Basic Language...
# 2

It works the same way, but you use a different format.

Thanks Again

Davids Learning

DavidsLearning at 2007-8-30 > top of Msdn Tech,Visual Basic,Visual Basic Language...