Jump to content

carriage return in msgbox?


 Share

Recommended Posts

You beat me to the punch Valuater but he is looking for a Carriage Return.

Carrage Return : @CR

Line Feed : @LF

Carrage Return + Line Feed = @CRLF

Anything you wish to add that is not a string ("") that you have already added, you need to use the & parameter. For example.

$Variable = "Hello"

MsgBox(0, "Test", $Variable & " World!")

Or

$Hello = "Hello"

$World = "World

MsgBox(0, "Test", $Hello & " " & $World & "!")

Hope you can understand this!!!

AutoIt Smith

Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
 Share

  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...