Jump to content

Search the Community

Showing results for tags 'extmsgbox'.

  • Search By Tags

    Type tags separated by commas.
  • Search By Author

Content Type


Forums

  • General
    • Announcements and Site News
    • Administration
  • AutoIt v3
    • AutoIt Help and Support
    • AutoIt Technical Discussion
    • AutoIt Example Scripts
  • Scripting and Development
    • Developer General Discussion
    • Language Specific Discussion
  • IT Administration
    • Operating System Deployment
    • Windows Client
    • Windows Server
    • Office

Categories

  • AutoIt Team
    • Beta
    • MVP
  • AutoIt
    • Automation
    • Databases and web connections
    • Data compression
    • Encryption and hash
    • Games
    • GUI Additions
    • Hardware
    • Information gathering
    • Internet protocol suite
    • Maths
    • Media
    • PDF
    • Security
    • Social Media and other Website API
    • Windows
  • Scripting and Development
  • IT Administration
    • Operating System Deployment
    • Windows Client
    • Windows Server
    • Office

Find results in...

Find results that contain...


Date Created

  • Start

    End


Last Updated

  • Start

    End


Filter by number of...

Joined

  • Start

    End


Group


Member Title


Location


WWW


Interests

Found 1 result

  1. When I set ExtMsgBox to use fixed font, the width is calculated incorrectly, so text wraps. my code: #include <_ExtMsgBox.au3> #include <Array.au3> _ExtMsgBoxSet(0, 0, -1, -1, 10, "courier new") ; Set _ExtMsgBox formatting ShowAbout() Func ShowAbout() Local $ar[1] = [0] _ArrayAdd($ar, "Program to bla bla bla.") _ArrayAdd($ar, "") _ArrayAdd($ar, "usage: " & "[-switch>] [<datafile>.csv]") _ArrayAdd($ar, "") _ArrayAdd($ar, "<-switch>:") _ArrayAdd($ar, "-h ....... Display this help information") _ArrayAdd($ar, "-nb ...... Do not create backup files.") _ArrayAdd($ar, "-regdel... Delete program relative registry items before") _ArrayAdd($ar, " running (debug mode only)") _ArrayAdd($ar, "-ro ...... Do not modify the input file.") _ArrayAdd($ar, "-tail .... Launch 'Tail' to tail the debug output file") _ArrayAdd($ar, "") _ArrayAdd($ar, "Copyright 2011-2016, Andy Scharmer") _ExtMsgBox(8, "OK", "About", _ArrayToString($ar, @CRLF, 1)) Return EndFunc ;==>ShowAbout
×
×
  • Create New...