D
DawnTreader
Hello All
i have this:
Private Sub Form_Current()
On Error GoTo Err_Form_Current
Call Visibility
Exit_Form_Current:
Exit Sub
Err_Form_Current:
If err = 2448 Then
Else
MsgBox "Error #: " & err.Number & " " & err.Description
End If
Resume Exit_Form_Current
End Sub
does the Exit Sub cause the routine to never hit the End Sub? or only when there is an error?
i have this:
Private Sub Form_Current()
On Error GoTo Err_Form_Current
Call Visibility
Exit_Form_Current:
Exit Sub
Err_Form_Current:
If err = 2448 Then
Else
MsgBox "Error #: " & err.Number & " " & err.Description
End If
Resume Exit_Form_Current
End Sub
does the Exit Sub cause the routine to never hit the End Sub? or only when there is an error?