Jump to content

Write more than one line in msgbox?


sd333221
 Share

Recommended Posts

Hi,

if i want to write something like that >>>>>>>>>this<<<<<<<<<<<< i have to write more than one line...

how can i tell autoit in my code to change to the next line in my msgbox?

MsgBox(262160,"war3","This application has encountered a critical error:FATAL ERROR!Program: dsfsf")
<- this will only be one lane in error

hope you understand me...

greetings,

sd333221

Edited by sd333221
Link to comment
Share on other sites

MsgBox(262160,"war3","This application has encountered a critical error:FATAL ERROR" _
& @CR & _
 "Program: dsfsf")

Note that I've split the lines to let you see what I've added, you can keep it all on one line if required.

----[ SandyD ]---
Link to comment
Share on other sites

Thank you,

this is the final working result

MsgBox(262160,"war3", "This application has encountered a critical error:" & @CR & @CR & "FATAL ERROR!" & @CR & @CR & "Program: d:/programme/war3.exe" & @CR & "Exception:                  0xC0000005 (ACCES_VIOLATION) at 001B:6F388223" & @CR & @CR & "The instruction at '0x6F38823' referenced memory at '0x6DCE2FC4'." & @CR & "The memory could not be 'written'." & @CR & @CR & "Press OK to terminate the application" & @CR)

greetings

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...