i know it's possible to do that in TASM, i'm wondering if it's possible to do the same in MASM? get's annoying having a messagebox a foot long...
You can do it this way in MASM:
.data
MBoxText db "Hello",13,10
db "How are you doin' today?",13,10
db "Groovy Day out there!",0
The 13,10 is the Carriage Line Return Thingy...
Have fun :)
You can do it this way in MASM:
.data
MBoxText db "Hello",13,10
db "How are you doin' today?",13,10
db "Groovy Day out there!",0
The 13,10 is the Carriage Line Return Thingy...
Have phun :)
Sorry for double post...
Just a small point:
the CR-LF pair isn't needed for a message box - just a CR will work
eg "This is some text",13,"and this is some more",0
thanks guys, it helps a lot...