MessageDialog.Show

From Xojo Documentation

Method

MessageDialog.Show(message As String)

New in 2019r2

Supported for all project types and targets.

Displays the message in a MessageDialog window.

Notes

For multi-platform compatibility, also look at the MessageBox method.

fa-exclamation-circle-32.png
You should avoid using MessageDialog.Show for displaying debugging messages. The displaying of the dialog will alter event order and may give unexpected results. Instead use the Debugger, System.DebugLog or your own logging mechanism.

Sample Code

MessageDialog.Show("Hello, World!")