sd333221 Posted November 10, 2005 Posted November 10, 2005 (edited) 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 errorhope you understand me...greetings,sd333221 Edited November 10, 2005 by sd333221
MHz Posted November 10, 2005 Posted November 10, 2005 (edited) MsgBox(4096, "Test", "This box will time out in" & @LF & "10 seconds", 10) Edited November 10, 2005 by MHz
sandyd Posted November 10, 2005 Posted November 10, 2005 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 ]---
sd333221 Posted November 10, 2005 Author Posted November 10, 2005 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
Recommended Posts
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 accountSign in
Already have an account? Sign in here.
Sign In Now