N
Newbie
Can somebody tell me why the On Error Goto statement has
to be like this?
Exit_Form_Open:
Exit Sub
Err_Form_Open:
MsgBox Err.Description
Resume Exit_Form_Open
And not like this?
Err_Form_Open:
MsgBox Err.Description
Exit Sub
to be like this?
Exit_Form_Open:
Exit Sub
Err_Form_Open:
MsgBox Err.Description
Resume Exit_Form_Open
And not like this?
Err_Form_Open:
MsgBox Err.Description
Exit Sub