
FB II Compiler
PG PRO
Debugging
Memory
System
Mathematics
Resources
Disk I/O
Windows
Controls
Menus
Mouse
Keyboard
Text
Fonts
Drawing
Sound
Clipboard
Printing
Communication
ASM
|
DISK I/O
Write files for DOS
Instead of using...
PRINT #1, myLine$
use...
myLine$ = myLine$ + chr$(10):REM line feed
PRINT #1, myLine$; :REM note semicolon
If your PCs need to see a line feed AND a carriage return, omit the semicolon.
|