home *** CD-ROM | disk | FTP | other *** search
- PROCEDURE InfoMsg
- PARAMETERS pcMsg
- *----------------------------------------------------------------------------
- * NAME
- * InfoMsg - Displays an ErrMsg message box with information title and OK.
- *
- * PARAMETERS
- * pcMsg = Message to display in message box
- *
- *----------------------------------------------------------------------------
- #include "ERRMSG.HDB"
-
- dB5___EMsg.Message = pcMsg
- dB5___EMsg.BoxTitle = [Information]
- DO ErrMsg WITH dB5___EMsg
- lVoid = dB5___EMsg.Release()
- RELEASE dB5___EMsg
-
- RETURN
- *-- EOP: InfoMsg WITH pcMsg
-
-
-