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