Displays a dialog box containing an error logo and the message passed in parameter.
// In C
CALLWD("Error,Error reading the file %s",FileName);
// In Pascal
CALLWD('Error,Error reading the file '+FileName);
// In VB
call CALLWD("Error,Error reading the file "+FileName)
Syntax
<Message>: Character string
Message to display (up to 200 characters).
Remarks
- The window will be closed when the user validates the "OK" button.
- By default, the title of the window is the title of the current window. To modify the title, you must use Windows,TNext.
- To display the message on several lines, use the following syntax:
- Example in C:
- Example in Pascal:
CALLWD('Error, '+Chr(10)+ ' ');
- Example in VB:
call CALLWD("Error, "+CHR(10)+"")