Jump to content

Recommended Posts

Posted (edited)

Hello and thank you for reading my question.

I have made a small program that automates basically a bunch of clicking and towards that end I have made it without a GUI. The functions are activated through the press of a hotkey. Now due to the "lack" of a GUI I want to show a message box when my application starts that tells you what button does what. So I want to format it like the following for clarity:

|-------------------------------------------------|

| Hello welcome to my program: |

| |

| Button W does this |

| Button X does that |

| Button Y does such |

| Button Z does so |

| [OK] |

|-------------------------------------------------|

Can I achieve this in AutoIt (So that my message box looks like this)?

PS: Props for ASCII art? :oops: Ok apperantly ascii art isnt allowed lol

Edited by WiseGuy
Posted

There is an extended MsgBox available written by Melba23.

My UDFs and Tutorials:

  Reveal hidden contents

 

Posted (edited)

MsgBox(64, "4 row message box", "Hello welcome to my program:" & @CRLF & @CRLF & _
        " Button W does this" & @CRLF & @CRLF & _
        "Button X does that" & @CRLF & @CRLF & _
        " Button Y does such" & @CRLF & @CRLF & _
        "Button Z does so")

Edited by Chimaera

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
  • Recently Browsing   0 members

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