home *** CD-ROM | disk | FTP | other *** search
- //
- // Module Name: AS_TRCE.COD
- // Description: Used for stubs and status level
- //
- {// Enum string constants for international translation
- enum trace1 = "S - Set trace level, D - Display status, M - display Memory",
- trace2 = "P - Turn printer on, Q - to Quit",
- trace3 = "Set trace level",
- trace4 = "Enter trace level to change to:' GET gn_trace PICTURE '#",
- trace5 = " '0' turns trace off",
- trace6 = "Trace is now turned off..To reactivate Trace - Press [F3]",
- trace7 = "Press any key to continue...",
- ;
- }
- PROCEDURE Trace
- PARAMETERS pc_msg, pn_lvl
- *{replicate("-",69)}
- * DESCRIPTION
- * Trace procedure to let programmer know what module
- * is about to execute and what module has executed.
- *
- * PARAMETERS
- * pc_msg = message line
- * pn_lvl = trace level
- *
- *{replicate("-",69)}
- PRIVATE lc_msg, ln_lvl, lc_trp
-
- lc_msg = pc_msg
- ln_lvl = pn_lvl
- lc_trp = ' '
- IF gn_trace < ln_lvl{tabto(41)}&& Check for trace off
- RETURN
- ENDIF
-
- DEFINE WINDOW trace FROM 5,0 TO 16,79 DOUBLE
- ACTIVATE WINDOW trace
-
- DO WHILE lc_trp <> 'Q'
- CLEAR
- @ 2,40-LEN(lc_msg)/2 SAY lc_msg
- @ 4,05 SAY '{trace1}'
- @ 5,05 SAY '{trace2}'
- lc_trp = 'Q'
- @ 5,38 GET lc_trp PICTURE "@M Q,S,D,M,P"
- READ
-
- DO CASE
-
- CASE lc_trp = 'S'
- @ 2,01 CLEAR
- @ 2,33 SAY '{trace3}'
- @ 4,05 SAY '{trace4}'
- @ 5,05 SAY [{trace5}]
- READ
-
- IF gn_trace=0
- @ 2,01 CLEAR
- @ 3,05 SAY '{trace6}'
- @ 4,05 say '{trace7}'
- WAIT ''
- ON KEY LABEL F3 gn_trace = 1
- ENDIF
-
- CASE lc_trp = 'D'
- DISPLAY STATUS
- WAIT
-
- CASE lc_trp = 'M'
- DISPLAY MEMORY
- WAIT
-
- CASE lc_trp = 'P'
- SET PRINT ON
-
- ENDCASE
- ENDDO
-
- SET PRINT OFF
- RELEASE WINDOW trace
- @ 24,79 SAY " "
-
- RETURN
- *-- EOP: Trace WITH pc_msg, pn_lvl
- // EOP AS_TRCE.COD
-
-