home *** CD-ROM | disk | FTP | other *** search
- //
- // Module name: as_muser.cod
- // Description: Multi-User error handler
- //
- // ERROR() MESSAGE() File, record error, critical
- // ========================================================================
- // 148 Network server busy critical
- // 217 Lock table full critical
- // 131 Database is encrypted file
- // 110 Exclusive open of file is required file
- // 108 File is in use by another file
- // 129 Unable to lock file/record
- // 133 Unauthorized access level file/record
- // 124 Invalid printer redirection N/A
- // 132 Unauthorized login N/A
- // 111 Cannot write to a read-only file record
- // 109 Record is in use by another record
- // 130 Record is not locked record
- // 128 Unable to skip record
- //
- // Errors will be handled in one of two ways:
- //
- // 1) Display message and return to menu
- // 2) Dialog box for options Try again and Return to menu
- //
- PROCEDURE Multerr
- *{replicate("-",69)}
- * Errors will be handled in one of two ways:
- *
- * 1) Display message and return to menu
- * 2) Dialog box for options Try again and Return to menu
- *{replicate("-",69)}
- PRIVATE lc_opt, lc_erno
-
- gn_error=ERROR(){tabto(41)}&& Set the global error variable
- lc_erno=STR(ERROR(),3)+','{tabto(41)}&& Contains error number to test
- lc_opt='T'{tabto(41)}&& Option variable
-
- *-- Dialog box for options Try again and Return to menu.
- IF lc_erno $ "108,109,128,129,"
- ACTIVATE WINDOW Pause
- @ 0,2 SAY lc_erno+" "+MESSAGE()
- @ 2,22 SAY "T = Try again, R = Return to menu." ;
- GET lc_opt PICTURE "!" VALID lc_opt $ "TR"
- READ
- DEACTIVATE WINDOW Pause
- IF lc_opt = "R"
- RETURN
- ENDIF
- ENDIF
-
- *-- Display message and return to menu.
- IF .NOT. lc_erno $ "108,109,128,129,"
- DO PAUSE WITH ERROR()
- RETURN
- ENDIF
-
- gn_error=0{tabto(41)}&& Reset global variable
- RETRY{tabto(41)}&& Try the command again
-
- RETURN
- *-- EOP: Multerr
- // EOP AS_MUSER.COD
-