home *** CD-ROM | disk | FTP | other *** search
/ Liren Large Software Subsidy 7 / 07.iso / d / d009_2 / 1.ddi / SAMPLES / DOCS / LOGSCRN.MS$ / LOGSCRN.bin
Encoding:
Text File  |  1992-02-03  |  872 b   |  27 lines

  1. '*********************** LOGSCRN.MST *************************************
  2. 'Demonstrates:  Logging information to screen.
  3. '
  4. 'Required Files: FASTTEST.INC, CALC.EXE
  5. '
  6. 'Uses: FASTTEST
  7. '
  8. 'Complexity Level: INTRODUCTORY
  9. '
  10. 'Notes:
  11. '
  12. '*************************************************************************
  13.  
  14. '$INCLUDE 'FASTTEST.INC'       '*** Include all necessary files.
  15.  
  16. XSetLogOptions LOG_SCREEN      '*** Output errors to the viewport.
  17. Viewport Clear                 '*** Clear the viewport to start with
  18.                                '*** a blank screen
  19. XLog "Test #119100"            '*** Log header information
  20. XLog "Date: 01-15-91"          '*** More log header information
  21. XLogBanner "Starting Test..."  '*** Output a banner to the log file
  22.  
  23. XStartApp "calc.exe", ""       '*** Start the Windows Calculator
  24. XLog "Application started"
  25. END
  26.  
  27.