G
gg
Is there something microsoft is not telling us about making a runtime file?
Like a lot oif people asking for help, I get constant shutdowns from runtime
errors. I have tried everything recommended on this site and others except
mztools. A consistent recommendation seems to be to put in error handling
with your code. I have, but the runtime version still shuts down on runtime
errors. Am I missing something. My error handling looks like this:
Private Sub Distance_AfterUpdate()
On Error GoTo Distance_AfterUpdate_Err
My code that works fine in regular accdb or accde
Distance_AfterUpdate_Exit:
Exit Sub
Distance_AfterUpdate_Err:
MsgBox Err.Number
Resume Distance_AfterUpdate_Exit
End Sub
Is there something else I should be doing?
Like a lot oif people asking for help, I get constant shutdowns from runtime
errors. I have tried everything recommended on this site and others except
mztools. A consistent recommendation seems to be to put in error handling
with your code. I have, but the runtime version still shuts down on runtime
errors. Am I missing something. My error handling looks like this:
Private Sub Distance_AfterUpdate()
On Error GoTo Distance_AfterUpdate_Err
My code that works fine in regular accdb or accde
Distance_AfterUpdate_Exit:
Exit Sub
Distance_AfterUpdate_Err:
MsgBox Err.Number
Resume Distance_AfterUpdate_Exit
End Sub
Is there something else I should be doing?