home *** CD-ROM | disk | FTP | other *** search
- *******************
-
- PROCEDURE Fake_dos
-
- PARAMETERS p, l, v
-
- PRIVATE _poprow, _popcol, _oldcolor, _temp
-
- IF TYPE("scrcursor") = "U"
- scrcursor = .T.
- ENDIF
- SET CURSOR ON
- _poprow = ROW()
- _popcol = COL()
- _oldcolor = SETCOLOR()
- PUSHSCREEN()
- SETCOLOR("")
- @ 0,0 CLEAR
- @ 1,0 SAY "Enter EXIT to Return to Program Control...."
- IF MEMORY(0) < 40
- @ 4,0 SAY "There is NOT enough memory to continue processing!!"
- @ 6,0 SAY " Please press any key to continue..."
- INKEY(0)
- ELSE
- RUN Command
- ENDIF
- POPSCREEN()
- SET CURSOR (scrcursor)
- SETCOLOR(_oldcolor)
- @ _poprow, _popcol SAY ""
-
- * End of File