MsgBox Statement

Megjelenít egy üzenetet tartalmazó párbeszédablakot.

Szintaxis:


   MsgBox prompt As String [,buttons = MB_OK [,title As String]]
   response = MsgBox( prompt As String [,buttons = MB_OK [,title As String]])

Paraméterek:

prompt: String expression displayed as a message in the dialog box. Line breaks can be inserted with Chr$(13).

title: String expression displayed in the title bar of the dialog. If omitted, the title bar displays the name of the respective application.

buttons: Any integer expression that specifies the dialog type, as well as the number and type of buttons to display, and the icon type. buttons represents a combination of bit patterns, that is, a combination of elements can be defined by adding their respective values:

Nevesített konstans

Egész érték

Definíció

MB_OK

0

Csak az OK gombot jeleníti meg.

MB_OKCANCEL

1

Az OK és a Mégse gombot jeleníti meg.

MB_ABORTRETRYIGNORE

2

A Megszakítás, az Újra és a Mellőzés gombot jeleníti meg.

MB_YESNOCANCEL

3

Az Igen, a Nem és a Mégse gombot jeleníti meg.

MB_YESNO

4

Az Igen és a Nem gombot jeleníti meg.

MB_RETRYCANCEL

5

Az Újra és a Mégse gombot jeleníti meg.

MB_ICONSTOP

16

A Stop ikon hozzáadása a párbeszédablakhoz.

MB_ICONQUESTION

32

A Kérdőjel ikon hozzáadása a párbeszédablakhoz.

MB_ICONEXCLAMATION

48

A Felkiáltójel ikon hozzáadása a párbeszédablakhoz.

MB_ICONINFORMATION

64

Az Információ ikon hozzáadása a párbeszédablakhoz.

128

A párbeszédablak első gombja az alapértelmezett gomb.

MB_DEFBUTTON2

256

A párbeszédablak második gombja az alapértelmezett gomb.

MB_DEFBUTTON3

512

A párbeszédablak harmadik gombja az alapértelmezett gomb.


Hibakódok:

5 Érvénytelen eljáráshívás

Példa:


Sub ExampleMsgBox
 Const sText1 = "Váratlan hiba történt."
 Const sText2 = "A program végrehajtása folytatódni fog."
 Const sText3 = "Hiba"
 MsgBox(sText1 + Chr(13) + sText2,16,sText3)
 MsgBox(sText1 + Chr(13) + sText2, MB_ICONSTOP, sText3)
End Sub

Támogasson minket!