356
Appendix A: System Routines — Dialog
TI
-
89 / TI
-
92 Plus Developer Guide
Not for Distribution
Beta Version January 26, 2001
ERD_dismissNotice
Declaration:
void
ERD_dismissNotice
(void)
Category(ies):
Dialog, Error Handling
Description:
Remove dialog box displayed by previous call to
ERD_notice
.
Inputs:
None
Outputs:
None
Assumptions:
None
Side Effects:
May cause underlying windows to repaint.
Availability:
On AMS 2.00 and higher.
TI
-
89 / TI
-
92 Plus
Differences:
None
See Also: ERD_notice
Example:
BOOL bNotice;
bNotice = ERD_notice((UCHAR *)"WARNING", (UCHAR *)"Database reorganization in
progress -- do not interrupt!");
.
. /* reorganize database */
.
if (bNotice)
ERD_dismissNotice();