home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
PC User 2001 August
/
APC_Aug2001_CD2.iso
/
features
/
devtools
/
files
/
lb202win.exe
/
LB202W.EXE
/
TSTPRINT.BAS
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
BASIC Source File
|
2000-11-04
|
279 b
|
14 lines
'test printing
filedialog "Select a BASIC program", "*.bas", fname$
printerdialog
if fname$ = "" then end
open fname$ for input as #1
while eof(#1) = 0
line input #1, text$
lprint text$
wend
close #1
dump
end