MESSAGE

This function will display a message to the user.

MESSAGE(Text // Caption)

PARAMETERS

Text

The text to display.

Caption

The caption to display

Example #1.
MESSAGE(“Here is my message”//”My Caption”)

Example#2 – Tests to see if ~field1~ is blank, and will warn the user if it is:
TEST(~field1~//=//)
MESSAGE(“You cannot enter a blank value!  Please try again.”//”ERROR”)
SETFOCUS(FIELD1)
EXIT()
ENDTEST()