Quote Originally Posted by Oorang
Are you perchance supressing errors with "On Error Resume Next"?
not at all

Private Sub Test()

On Error Goto Error

 MsgBox "test"

 exit sub

Error:

 MsgBox "Error occured"

End Sub