bobbie320 Posted July 30, 2006 Posted July 30, 2006 is there a way that you can creat a msgbox window that can display multiple outputs on separate lines but in the same window? for example; $a = 3 $b = 6 MsgBox(4096, " ", $a) MsgBox(4096, " ", $ will obviously only display 3 in one window, then 6 in the next is there a way to make it look like 3 6 in the same msgbox? any help would be much appreciated. thx, bobbie
Moderators SmOke_N Posted July 30, 2006 Moderators Posted July 30, 2006 MsgBox(64, 'Info', $a & @CR & $B) Common sense plays a role in the basics of understanding AutoIt... If you're lacking in that, do us all a favor, and step away from the computer.
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