Can someone tell me why windows98 would issue the error
"illegal operation Performed" when running the attached program?
It compiles just fine....But will not run....Question- WHY???
$compile Exe
filin$ = command$
filein$ = mid$(filin$,1,8)
open filein$ for input as #1
open "lpt1" for output as #2
do while not eof(1)
line input #1, dta$
print #2, dta$
loop
END
------------------
"illegal operation Performed" when running the attached program?
It compiles just fine....But will not run....Question- WHY???
$compile Exe
filin$ = command$
filein$ = mid$(filin$,1,8)
open filein$ for input as #1
open "lpt1" for output as #2
do while not eof(1)
line input #1, dta$
print #2, dta$
loop
END
------------------
Comment