Break in Messagebox
i have a little problem...
how can i make breaks in a MessageBox
Archive: Break in Messagebox
Break in Messagebox
i have a little problem...
how can i make breaks in a MessageBox
Hi !
Err, not sure what you mean by "make breaks in a MessageBox"... :confused:
If do you mean "newlines", it can be achieved like this:
$\r
Use to represent a carriage return (\r).
$\n
Use to represent a newline (\n).
$\t
Use to represent a tab (\t).
Quoted from the NSIS doc, you can check:
http://nsis.sourceforge.net/Docs/Chapter4.html#4.2.4
and for MessageBoxes:
http://nsis.sourceforge.net/Docs/Chapter4.html#4.1
evilO/Olive
$\r
Use to represent a carriage return (\r).
$\n
Use to represent a newline (\n).
Differences? i used to insert $\n at least
$\n$\r is used in textfiles afair