home *** CD-ROM | disk | FTP | other *** search
- /*
- Listing 17.7 Pop-up shell
- Author: Joe Booth
- Excerpted from "Clipper 5: A Developer's Guide"
- Copyright (c) 1991 M&T Books
- 501 Galveston Drive
- Redwood City, CA 94063-4728
- (415) 366-3600
- */
-
- //───── NOTE: must compile with the /N option!
-
- LOCAL back_scr := savescreen( 0, 0, maxrow(), maxcol())
- Env_stack(.T.)
- Pushdbf()
-
- // Pop-up program's work is done here
-
- // End of pop-up program
-
- Popdbf()
- Env_stack(.F.)
- restscreen(0, 0, maxrow(), maxcol(), back_scr)
- return NIL
-
- // end of file CHP1707.PRG
-