+ Reply to Thread
Results 1 to 2 of 2

Capturing query table errors

Hybrid View

  1. #1
    T. Erkson
    Guest

    Capturing query table errors

    How do I intercept query table errors, bypassing the Excel ones?

    Here's an example of what I'm trying to do using examples from the Help
    files:
    Sub Macro2()
    Workbooks(1).Activate
    Application.DisplayAlerts = False ' This doesn't make a difference for my
    purposes
    On Error GoTo ErrorHandler
    Selection.QueryTable.Refresh BackgroundQuery:=False
    GoTo Exit_Sub

    ErrorHandler:
    Msg = "Error # " & Str(Err.Number) & " was generated by " & Err.Source &
    Chr(13) & Err.Description
    MsgBox Msg, , "Error", Err.HelpFile, Err.HelpContext

    Exit_Sub:
    On Error Resume Next
    Application.DisplayAlerts = True
    End Sub

    For testing I've moved the database to a different folder so the first error
    window is "Please Enter MS JET OLE DB Initialization Information", then my
    example message box. I want to COMPLETELY bypass the Windows error window
    and just use mine.

    Suggestions?



  2. #2
    T. Erkson
    Guest

    Re: Capturing query table errors

    Oops, wrong location. Please refer to the same question in the
    microsoft.public.excel.programming newsgroup. Sorry about that!



+ Reply to Thread

Thread Information

Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)

Bookmarks

Posting Permissions

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

Search Engine Friendly URLs by vBSEO 3.6.0 RC 1