Talk:Something is missing in the FAQ

From NSIS Wiki
Jump to navigationJump to search

Line feed, carriage return in Messagebox Hallo,

how can I realize a line feed, carriage return in a Messagebox?

Thanks Leo


You can do that by adding the following (without the quotes of course) : '$\r$\n'

MessageBox MB_ICONEXCLAMATION|MB_OK "This is line 1$\r$\nThis is line 2."


Dennis