home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
DP Tool Club 19
/
CD_ASCQ_19_010295.iso
/
dos
/
prg
/
bas
/
hanlin3
/
pbc30a
/
vertprin.bas
< prev
next >
Wrap
BASIC Source File
|
1994-03-13
|
837b
|
26 lines
' +----------------------------------------------------------------------+
' | |
' | PBClone Copyright (c) 1990-1994 Thomas G. Hanlin III |
' | |
' +----------------------------------------------------------------------+
DECLARE SUB CursorInfo (Visible%, StartLine%, EndLine%, MaxLine%)
SUB VerticalPrint (St$)
Row% = CSRLIN
Col% = POS(0)
CursorInfo Visible%, StartLine%, EndLine%, MaxLine%
IF Visible% THEN LOCATE Row%, Col%, 0
FOR tmp% = 1 TO LEN(St$)
LOCATE Row% + tmp% - 1, Col%
PRINT MID$(St$, tmp%, 1);
NEXT
IF Visible% THEN
LOCATE Row%, Col%, 1
ELSE
LOCATE Row%, Col%
END IF
END SUB