zim_ulator
Registered User.
- Local time
- Today, 06:59
- Joined
- Dec 7, 2004
- Messages
- 12
Does anyone feel that this really basic error trapping code
Exit_btnEditRecord_Click:
Exit Sub
Err_btnEditRecord_Click:
MsgBox Err.Description
Resume Exit_btnEditRecord_Click
(which I believe Access pops in by default when using those "wizardy" thingies. ) are nessesary? If all I'm doing is calling a sub, with all the heavy lifting in a module, would it be prudent to take out the error stuff in the click event code, while error trapping code is executed in the module's code?
zim
invading an earth near you
Exit_btnEditRecord_Click:
Exit Sub
Err_btnEditRecord_Click:
MsgBox Err.Description
Resume Exit_btnEditRecord_Click
(which I believe Access pops in by default when using those "wizardy" thingies. ) are nessesary? If all I'm doing is calling a sub, with all the heavy lifting in a module, would it be prudent to take out the error stuff in the click event code, while error trapping code is executed in the module's code?
zim
invading an earth near you