Jump to content

Messagebox multiple lines


vkey
 Share

Recommended Posts

Or you can create your own function:

MultiLineMsgBox("TEST","LINE")
MultiLineMsgBox("TEST","LINE1|LINE2|LINE3|LINE4|LINE5")

Func MultiLineMsgBox($TITLE,$TEXT,$CHAR="|")
    Local $SPLIT = StringSplit($TEXT,$CHAR)
    Local $NEW = ""
    If IsArray($SPLIT) Then
        For $INDEX = 1 To $SPLIT[0]
            $NEW &= $SPLIT[$INDEX] & @CRLF
        Next
        MsgBox(0,$TITLE,$NEW)
    Else
        MsgBox(0,$TITLE,$TEXT)
    EndIf
EndFunc

When the words fail... music speaks.

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