Results 1 to 2 of 2

Thread: Handling errors

  1. #1

    Thread Starter
    Lively Member
    Join Date
    Jan 1999
    Posts
    118
    Is there a way I can not show the user any error and/or have my program ignore the error?

    Thanks

  2. #2
    Fanatic Member Dim's Avatar
    Join Date
    Jul 2000
    Posts
    620
    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]
    Dim

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  



Click Here to Expand Forum to Full Width