Welcome!

By registering with us, you'll be able to discuss, share and private message with other members of our community.

SignUp Now!

Line break in msgbox text

Jun
30
0
How do I insert a line break into a msgbox text? C-style "\n" doesn't work.

msgbox /w ok "Warning" Bad path:[line break here]%somepath%
 
How do I insert a line break into a msgbox text? C-style "\n" doesn't work.

msgbox /w ok "Warning" Bad path:[line break here]%somepath%

Try %=N instead:

msgbox /w ok "Warning" Bad path:%=n%somepath
 
On Fri, 09 Jul 2010 16:58:06 -0400, element <>
wrote:

|How do I insert a line break into a msgbox text? C-style "\n" doesn't work.
|
|msgbox /w ok "Warning" Bad path:[line break here]%somepath%

Use a TCC escape sequence; with the default escape character, that'll
be ^n.
 

Similar threads

Back
Top