home *** CD-ROM | disk | FTP | other *** search
- '*********************** LOGSCRN.MST *************************************
- 'Demonstrates: Logging information to screen.
- '
- 'Required Files: FASTTEST.INC, CALC.EXE
- '
- 'Uses: FASTTEST
- '
- 'Complexity Level: INTRODUCTORY
- '
- 'Notes:
- '
- '*************************************************************************
-
- '$INCLUDE 'FASTTEST.INC' '*** Include all necessary files.
-
- XSetLogOptions LOG_SCREEN '*** Output errors to the viewport.
- Viewport Clear '*** Clear the viewport to start with
- '*** a blank screen
- XLog "Test #119100" '*** Log header information
- XLog "Date: 01-15-91" '*** More log header information
- XLogBanner "Starting Test..." '*** Output a banner to the log file
-
- XStartApp "calc.exe", "" '*** Start the Windows Calculator
- XLog "Application started"
- END
-
-