Display an alert or message for the user.
This function displays a dialog box containing the string. This provides information to the user and includes only the OK button. The argument *string is the text to be displayed in the small dialog box. This string may contain new-line characters ("\n") to present the text more clearly.
The function returns RTNORM if successful; otherwise, it returns an errorcode.
Example
char string1[512];
strncpy(string1,"A point is needed.\n\n Please try again.",
sizeof(string1)-1);
sds_alert(string1);
Shows a dialog box with this message:
A point is needed.
Please try again.
Tell me about...
Programming Overview of SDS™ (Solutions Development System™)