SUMMARY
If a program is compiled in Macintosh QuickBASIC without the "Use
Default Window" option selected from the Options... item on the Run
menu, and the program does not create its own window, no output goes
to the screen when the program is run.
Warning: The BEEP or INPUT statement, many ROM calls, and all types of
graphics statements may result in one of the following symptoms if
invoked before you have created a window in a compiled QuickBASIC
program:
- System hang (which requires you to reboot the Macintosh)
- System Error (bomb), such as ID=25, "Out of Heap Space" (which
usually requires you to reboot the Macintosh)
- Other unpredictable results
If you need to use one of these statements, you must either compile
with the "Use Default Window" option selected or make the program
create its own window using the WINDOW statement before sending
output.
The ability to turn off the default window is provided in Macintosh
QuickBASIC to suppress the brief flashing appearance of the Untitled
output window at the beginning of compiled programs that define their
own windows with the WINDOW statement. This feature helps software
developers improve the polished appearance of programs.