Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations IamaSherpa on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

HOW TO STOP ACCESS 97 LOCKING UP AFTER REPORTING AN ERROR

Status
Not open for further replies.

mikelt

Programmer
Jul 4, 2000
14
GB
When Access 97 reports an error in the system eg. 'Invalid Use of Null'&nbsp;&nbsp;and then asks whether you want to Debug, Ignore or End.&nbsp;&nbsp;Going to Debug just locks Access and the only solution is to close down Access or End Task.&nbsp;&nbsp;Has anybody got a solution?<br><br>My Version of access is 07.53, Build 3512 running on Windows NT, Windows 95.<br><br>My thanks in anticipation.<br>
 
use eror trapping. Several examples in access help. Another would be to make strings so they don't return a null.<br><br>On Error GoTo Err_Command19_Click<br><br>Err_Command19_Click:<br>&nbsp;&nbsp;&nbsp;&nbsp;MsgBox Err.Description<br>&nbsp;&nbsp;&nbsp;&nbsp;Resume Exit_Command19_Click
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top