home *** CD-ROM | disk | FTP | other *** search
/ Liren Large Software Subsidy 5 / 05.iso / a / a012 / 1.ddi / CHAP17.EXE / CHP1707.PRG < prev    next >
Encoding:
Text File  |  1991-04-30  |  607 b   |  27 lines

  1. /*
  2.    Listing 17.7  Pop-up shell
  3.    Author: Joe Booth
  4.    Excerpted from "Clipper 5: A Developer's Guide"
  5.    Copyright (c) 1991 M&T Books
  6.                       501 Galveston Drive
  7.                       Redwood City, CA 94063-4728
  8.                       (415) 366-3600
  9. */
  10.  
  11. //───── NOTE: must compile with the /N option!
  12.  
  13. LOCAL back_scr := savescreen( 0, 0, maxrow(), maxcol())
  14. Env_stack(.T.)
  15. Pushdbf()
  16.  
  17.    // Pop-up program's work is done here
  18.  
  19.    // End of pop-up program
  20.  
  21. Popdbf()
  22. Env_stack(.F.)
  23. restscreen(0, 0, maxrow(), maxcol(), back_scr)
  24. return NIL
  25.  
  26. // end of file CHP1707.PRG
  27.