home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
The Datafile PD-CD 1B
/
DATAFILE_PDCD1B.iso
/
_pocketbk
/
pocketbook
/
003
/
settab_zip
/
TESTTABS.OPL
< prev
next >
Wrap
Text File
|
1992-10-12
|
519b
|
32 lines
proc testtabs:
local m%,i%
cls
do
minit
mcard "Tab Test","Vertical",%v,"Horizontal",%h,"Exit",%x
m%=menu
if m%=%v
lopen "PAR:A"
lprint "Vertical Tab Test"
i%=1
while i%<5
lprint chr$(11);"VTAB",i%;
i%=i%+1
endwh
lprint chr$(12);
lclose
elseif m%=%h
lopen "PAR:A"
lprint "Horizontal Tab Test"
i%=1
while i%<5
lprint chr$(9);"VTAB",i%;
i%=i%+1
endwh
lprint chr$(12);
lclose
endif
until m%=%x
endp