Use multilines in a MessageBox
:blah:
How can I put multilines in a MessageBox, for example:
Normal one:
Hi, wanna install My setup.
Custom one:
Hi, wanna install
My setup.
I think they call them line breaks...
:p
Archive: Use multilines in a MessageBox
Use multilines in a MessageBox
:blah:
How can I put multilines in a MessageBox, for example:
Normal one:
Hi, wanna install My setup.
Custom one:
Hi, wanna install
My setup.
I think they call them line breaks...
:p
Just use $\r$\n. For example:
MessageBox MB_OK "First line$\r$\nSecond line"
thanks
:D