Is there a way I can not show the user any error and/or have my program ignore the error?
Thanks
Printable View
Is there a way I can not show the user any error and/or have my program ignore the error?
Thanks
Instead of
useCode:Private Sub Command1_Click()
On Error GoTo ErroHandler
'code
End Sub
[Edited by Dim on 11-21-2000 at 02:43 PM]Code:Private Sub Command1_Click()
On Error Resume Next
'code
End Sub