Dialogs Component
Fnd_Dlg_Message
Fnd_Dlg_Message (message text)
Parameters
| Parameter | Type | Description |
|---|---|---|
| message text | Text | Message text to display |
Description
The Fnd_Dlg_Message routine displays a message window. This routine replaces 4D’s MESSAGE command.
Fnd_Dlg_Message ("Connecting to the data server...")
ODBC_Connect
Fnd_Dlg_Message ("Downloading the structure...")
ODBC_GetMetaData ODBC_CloseConnection Fnd_Dlg_MessageClose
You can update the message while it is displayed by calling this method again. To close the message window that appears after calling this routine, call this routine again and pass an empty string (“”) as the message text parameter, or call the Fnd_Dlg_MessageClose command. For more control over the message dialog, use the Fnd_Dlg_MessageOpen routine instead.
Extracted source text
Fnd_Dlg_Message (message text)
Parameter Type Description
message text Text Message text to display
The Fnd_Dlg_Message routine displays a message window. This routine replaces 4D’s MESSAGE
command.
Fnd_Dlg_Message ("Connecting to the data server...")
ODBC_Connect
Fnd_Dlg_Message ("Downloading the structure...")
ODBC_GetMetaData
ODBC_CloseConnection
Fnd_Dlg_MessageClose
You can update the message while it is displayed by calling this method again.
To close the message window that appears after calling this routine, call this routine again and pass an
empty string (“”) as the message text parameter, or call the Fnd_Dlg_MessageClose command.
For more control over the message dialog, use the Fnd_Dlg_MessageOpen routine instead.