+ Reply to Thread
Results 1 to 20 of 20

XML VBA Error Catching

Hybrid View

  1. #1
    Forum Guru Norie's Avatar
    Join Date
    02-02-2005
    Location
    Stirling, Scotland
    MS-Off Ver
    Microsoft Office 365
    Posts
    19,644

    Re: XML VBA Error Catching

    When you run the code with invalid latitude and longitude is that what's returned in the responseText of the request?

    If it is I would suggest that you check the responseText before you load it into the XLM/DOM document Resp.

    Something like this perhaps.
        For Each Site In SiteList
    
            req.Open "GET", Site.Value, False
            req.send
    
            ctrr = ctrr + 1
            siteNames = Worksheets("Site List").Cells(ctrr, 2).Value
    
            If Instr(req.ResponseText, "An error occurred!") Then
                ' code to do something if there's been a problem
            Else
                Resp.LoadXML req.responseText
                ' continue with code to get data
           End If
     
        Next Site
    If posting code please use code tags, see here.

  2. #2
    Registered User
    Join Date
    06-18-2014
    Location
    Houston, TX
    MS-Off Ver
    2010
    Posts
    63

    Re: XML VBA Error Catching

    That is what appears on the website, when you access the URL through a browser.

  3. #3
    Registered User
    Join Date
    06-18-2014
    Location
    Houston, TX
    MS-Off Ver
    2010
    Posts
    63

    Re: XML VBA Error Catching

    Is there something I can add there to pinpoint which site created the error?

+ Reply to Thread

Thread Information

Users Browsing this Thread

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

Similar Threads

  1. Error catching and repeat macro
    By DaveMurray23 in forum Excel Programming / VBA / Macros
    Replies: 10
    Last Post: 06-16-2014, 09:35 AM
  2. Catching error on Application.GetOpenFilename embed in Open For Input
    By Clevis in forum Excel Programming / VBA / Macros
    Replies: 4
    Last Post: 02-27-2013, 02:04 PM
  3. Proper error catching runtime error 1004
    By randell.graybill in forum Excel Programming / VBA / Macros
    Replies: 1
    Last Post: 03-14-2010, 01:07 AM
  4. Catching an error
    By ChrisMattock in forum Excel Programming / VBA / Macros
    Replies: 7
    Last Post: 07-04-2006, 05:15 AM
  5. [SOLVED] globally catching any error event?
    By RB Smissaert in forum Excel Programming / VBA / Macros
    Replies: 2
    Last Post: 08-04-2005, 03:05 PM

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