home *** CD-ROM | disk | FTP | other *** search
- ' +----------------------------------------------------------------------+
- ' | |
- ' | PBClone Copyright (c) 1990-1992 Thomas G. Hanlin III |
- ' | |
- ' +----------------------------------------------------------------------+
-
- DECLARE SUB DelayV (BYVAL MilliSeconds%)
- DECLARE SUB GetVidMode (BIOSMode%, ScreenWidth%, ActivePage%)
- DECLARE SUB XQPrint (St$, BYVAL Row%, BYVAL Column%, BYVAL VAttr%, BYVAL Page%, BYVAL Fast%)
-
- SUB TypePrint (St$, Row%, Col%, WaitTime%, TmpAttr%, VAttr%, Fast%)
- GetVidMode BIOSMode%, ScrWidth%, Page%
- FOR tmp% = 1 TO LEN(St$)
- ch$ = MID$(st$, tmp%, 1)
- XQPrint ch$, Row%, tmp% + Col% - 1, TmpAttr%, Page%, Fast%
- DelayV WaitTime%
- XQPrint ch$, Row%, tmp% + Col% - 1, VAttr%, Page%, Fast%
- NEXT
- END SUB
-