MsgBox(msg As String)

 

Displays message box showing the message msg passed.

 

  

Parameters:

 

Name

Type

Description

msg

String

Message to be displayed by message box

 

 

Available in:

 

WindowMain

WindowLink

YES

YES

 

 Used in:

 

XojoScript Name

GUID

Add code and prices to events

A5CABD2D-92A3-494C-ADDF-8666611B3B6B

Import ISR payment file

52C27AC4-24B7-4B7D-9107-6223B4E10E45

Record insert in databox

C05B0C75-E449-4752-AB16-65693A6A00A1

Record update in databox

4A25A881-0947-45EF-B691-B81900C1ACEE

Generate Printlabel and linkbox text

74855E25-5542-4B9D-B821-04C414425526

Copy current SQL Statement from Databox

2DF5C42C-8BB5-4E65-9C7B-47C05623A707

 

Hint: You can find more references to XojoScripts which make use of this function by sending the following SQL statement to the database:

Select id,GUID, ScriptName,ScriptCode from im_scripts where ScriptCode Like '%MsgBox%'

 

Example XojoScript:

 

// Copy SQL of Databox, from Scripts Menu

Dim sql As String = GetDataBoxSQL

If sql <> "" Then

SetClipboardText(sql)

MsgBox("SQL copied to clipoard!" + EOL + EOL + sql)

End If