Code:
Private Sub Form_Load()
On Error GoTo Error_

SOME OTHER CODE NOT RELEVANT

Error_:
MsgBox "Error No : " & Err.Number & vbCrLf & "Error Description : " & Err.Description, vbCritical, "Error No." & Err.Number
Resume Next
End Sub
When i run this program i always get an error no. 0 and no description even though there is no error.

I think the program just shows the message box when its not suppose to how do i stop it doing it.

Thanks in advance chris1990