MessageWarning()

Previous Next

Opens a warning box, displays the specified warning message in it, then waits for the end user to click the OK button. If you deliver the application in multiple languages, use MessageLanguage() instead.

Syntax

MessageInformation( text )

 

The required text is a string that is the warning message to be displayed.

Example

MessageInformation(FORMULA(':1 || :2 || :3',

  'For tours to ', query.destination(), ', personal insurance is obligatory.'))

 

This could produce the message:

For tours to Africa, personal insurance is obligatory.

 

To include a single quote (') in the message, type two consecutive single quotes (''). Likewise, to include a percent sign (%), type %%.