Jump to content

Sky Slate Blueberry Blackcurrant Watermelon Strawberry Orange Banana Apple Emerald Chocolate
Photo

New Line in MsgBox


  • Please log in to reply
3 replies to this topic
cjsmile999
  • Members
  • 78 posts
  • Last active: Nov 18 2016 05:24 AM
  • Joined: 29 Jun 2009
Hello Everyone,

Is there any way to manually start a new line in a message box?

Thank you!

  • Guests
  • Last active:
  • Joined: --
2 ways...`n (caret n)...

msgbox, New`nLine
...or...line continuation (literal line break in source code)...

msgbox,
(LTrim
	New
	Line
)
...I use the 1st method during testing or for quick line breaks & the 2nd method for long error msg boxes or to make finalized msgbox's source code look nicer...

cjsmile999
  • Members
  • 78 posts
  • Last active: Nov 18 2016 05:24 AM
  • Joined: 29 Jun 2009
Awesome, you guys are the best! Thank you for your quick response!

munna
  • Members
  • 1 posts
  • Last active: Jul 24 2015 07:15 PM
  • Joined: 08 Jul 2015

hi i used a simlple method. like below

 

MsgBox,

(

1. abcd

2. efgh

3. hijkl

4

5

6

)

return

 

 

 

it worked for me