home *** CD-ROM | disk | FTP | other *** search
- *******************
-
- FUNCTION Toerr
-
- PARAMETERS _condit, _atrow, _atcol, _atstr, _wsound, _wwait
-
- IF PCOUNT() = 4
- _wsound = .T.
- _wwait = .F.
- ELSEIF PCOUNT() = 5
- _wwait = .F.
- ELSEIF TYPE("_condit") + TYPE("_atrow") + TYPE("_atcol") + ;
- TYPE("_atstr") + TYPE("_wsound") + TYPE("_wwait") != "LNNCLL"
- RETURN(.F.)
- ENDIF
-
- _oldcolor = SETCOLOR()
- SETCOLOR(Set_color(Attribute(_atrow, _atcol)))
-
- IF _condit
- RID(_atrow, _atcol, _atstr)
- ELSE
- @ _atrow, _atcol SAY _atstr
- IF _wsound
- ERRSOUND()
- ENDIF
- IF _wwait
- INKEY(0)
- RID(_atrow, _atcol, _atstr)
- ENDIF
- ENDIF
-
- SETCOLOR(_oldcolor)
- RETURN( _condit )
-
- * End of File