Jump to content

Recommended Posts

Posted

I have a line in my code along the lines of:

MsgBox(0, "Found", '"' & $OStype & '" was found in the array at pos ' & $Pos & "." & Chr(13) & "Congratulations your Operating System is up to date.")

This is kind of a long line and for readability while looking at the code I'ld like to have something like:

MsgBox(0, "Found", '"' & $OStype & '" was found in the array at pos ' & $Pos & "." & Chr(13) &

"Congratulations your Operating System is up to date.")

I'm guessing that there is a character or something that I put at the end of the first line to tell it that the line is continued on the next line.

TIA

John

  • Developers
Posted

use a Space plus Underscore at the end of the line to indicate this:

MsgBox(0, "Found", '"' & $OStype & '" was found in the array at pos ' & $Pos & "." & Chr(13) & _
"Congratulations your Operating System is up to date.")

:)

SciTE4AutoIt3 Full installer Download page   - Beta files       Read before posting     How to post scriptsource   Forum etiquette  Forum Rules 
 
Live for the present,
Dream of the future,
Learn from the past.
  :)

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
×
×
  • Create New...