home *** CD-ROM | disk | FTP | other *** search
- *****************************************************************
- * * 09/92 DODA.PRG *
- *****************************************************************
- * * Author's Name: Jeb Long *
- * * *
- * * Description: *
- * * This program illustrates how to programmatically use *
- * * the desk accessory and retrieve results. *
- *****************************************************************
- *********************************
- * Execute a Desk Accessory
- Stopit = .F.
- ON KEY LABEL ESCAPE DO Done
-
- READ WITH "CALCULATOR" VALID StopIt
- ON KEY LABEL ESCAPE
- DEACTIVATE WINDOW CALCULATOR
- ? "Results are:", _CALCVALUE
- RETURN
- *
- *****************
- * Terminate Read
- PROCEDURE Done
- StopIt = .T.
- CLEAR READ
- RETURN