How to print a GWBasic file ? 
Author Message
 How to print a GWBasic file ?

Hi
May I know how I can print a GWBasic file while inside the GWBasic
program? Please reply as soon as you can, thank you.

Regards



Fri, 11 Aug 2000 03:00:00 GMT  
 How to print a GWBasic file ?

Quote:
>Hi
>May I know how I can print a GWBasic file while inside the GWBasic
>program? Please reply as soon as you can, thank you.

OPEN "filename" FOR INPUT AS #1
WHILE NOT EOF(1)
    LINE INPUT #1, L$
    LPRINT L$
WEND
CLOSE

Tom Lake



Fri, 11 Aug 2000 03:00:00 GMT  
 How to print a GWBasic file ?

Quote:
>May I know how I can print a GWBasic file while inside the GWBasic

If the file you want to print is a GWBasic program, load it with
GWBASIC programname
and enter
LLIST
 in immediate mode.

If it's spam, it's a scam.  Don't do business with Net abusers.



Fri, 11 Aug 2000 03:00:00 GMT  
 How to print a GWBasic file ?

Save Basic Programs as an ASCII file and then print from the DOS prompt or
from an application.  To save Basic Programs as ASCII, load the program in
GW-BASIC, then type:
save "PROGRAM", A
where "PROGRAM" is the name of your program
and the letter A tells GW-Basic to save it as ASCII.



Quote:
> Hi
> May I know how I can print a GWBasic file while inside the GWBasic
> program? Please reply as soon as you can, thank you.

> Regards



Mon, 14 Aug 2000 03:00:00 GMT  
 
 [ 4 post ] 

 Relevant Pages 

1. GWBASIC (1/1) - gwbasic.zip [2/2]

2. GWBASIC (1/1) - gwbasic.zip [1/2]

3. Printing From GWBasic

4. GWBasic: printing CHR$ codes to laser printer?

5. HELP WITH PRINTING GWBASIC PROGRAM OUTPUT

6. conversion of gwbasic file to ASCII format

7. MENU SYSTEM FOR GWBASIC FILES

8. GWBasic file formats and tools

9. GWBASIC File Formats and Tools

10. GWBASIC save as ascii file command

11. random files from gwbasic

12. BASICA | GWBASIC protected files

 

 
Powered by phpBB® Forum Software