home *** CD-ROM | disk | FTP | other *** search
- // TBMsg.prg
- //
- // TBMsg() - Display a message at maxrow() without side-effect
-
- FUNCTION TBMsg(c)
-
- LOCAL cSs := saveScreen(maxRow(), 0, maxRow(), maxCol())
-
- @ maxRow(), 0
- @ maxRow(), 0 SAY c
- inkey(0)
-
- restScreen(maxRow(), 0, maxRow(), maxCol(), cSs)
-
- RETURN NIL