home *** CD-ROM | disk | FTP | other *** search
/ PC Multimidia 1996 October / PC_Multimidia_out_1996.iso / lingo.ini < prev    next >
Text File  |  1996-04-28  |  611b  |  16 lines

  1.  
  2. -- Loaded are:
  3. -- FILEIO.DLL, for file input and output
  4.  
  5. on startup
  6.     put "Now loading LINGO.INI"&&the date&&the time
  7.     put "This computer is running in "&& the colorDepth &"-bit color depth."
  8. --  set the centerStage to TRUE
  9.     openxlib "fileio"
  10.     -- Following line prevents crashes on Windows systems when using math functions 
  11.     -- such as power or log and passing bogus or extremely large/small values.
  12.     -- Invoking the float->string conversion code  with a valid value prevents
  13.     -- future crashes in this routine.  drs  1mar96 
  14.     if string(0.0)="a" then nothing
  15. end startup
  16.