MsgBox Statement

Amuesa un cuadru de diálogu que contién un mensaxe.

Sintaxis:

MsgBox Testu As String [,Tipu As Integer [,TítuloDiálogu As String]] (As Statement) o bien MsgBox (Testu As String [,Tipu As Integer [,TítuloDiálogu As String]]) (As Function)

Parámetros:

Testu: Espresión de cadena que s'amuesa como mensaxe nel cuadru de diálogu. Los saltos de llinia puen inxertase con Chr$(13).

TítuloDiálogu: Espresión de cadena que s'amuesa na barra de títulu del diálogu. Si omítese, la barra de títulu amuesa'l nome de l'aplicación respectiva.

Tipu: Cualquier espresión entera qu'especifique'l tipu de diálogu, según el númberu y tipu de botones qu'amosar y el tipu d'iconu. Tipu representa una combinación de patrones de bits, polo que puen definise dellos elementos sumando los sos valores respectivos:

Named constant

Integer value

Definition

MB_OK

0

Display OK button only.

MB_OKCANCEL

1

Display OK and Cancel buttons.

MB_ABORTRETRYCANCEL

2

Display Abort, Retry, and Ignore buttons.

MB_YESNOCANCEL

3

Display Yes, No, and Cancel buttons.

MB_YESNO

4

Display Yes and No buttons.

MB_RETRYCANCEL

5

Display Retry and Cancel buttons.

MB_ICONSTOP

16

Add the Stop icon to the dialog.

MB_ICONQUESTION

32

Add the Question icon to the dialog.

MB_ICONEXCLAMATION

48

Add the Exclamation Point icon to the dialog.

MB_ICONINFORMATION

64

Add the Information icon to the dialog.

128

First button in the dialog as default button.

MB_DEFBUTTON2

256

Second button in the dialog as default button.

MB_DEFBUTTON3

512

Third button in the dialog as default button.


Error codes:

5 Llamada a procedimientu non válida

Exemplu:

Sub ExampleMsgBox

 Const sTestu1 = "Producióse un fallu inesperáu."

 Const sTestu2 = "Sicasí, la execución del programa va siguir."

 Const sTestu3 = "Fallu"

 MsgBox(sText1 + Chr(13) + sText2,16,sText3)

 MsgBox(sText1 + Chr(13) + sText2, MB_ICONSTOP, sText3)

End Sub