MobilePopupMessage.Show

From Xojo Documentation

Shared Method

MobilePopupMessage.Show(message As String, duration As MobilePopupMessage.Durations = MobilePopupMessage.Durations.Long)

Supported for all project types and targets.

Displays the message for the duration specified before automatically disappearing.

Sample Code

The example displays the message for a long duration since that is the default duration:

MobilePopupMessage.Show("Your message has been sent.")

The example displays the message for a short duration:

MobilePopupMessage.Show("Your message has been sent.", MobilePopupMessage.Durations.Short)

See Also

MessageBox method.