Results 1 to 13 of 13

Error Handling behaving weirdly

Threaded View

  1. #1
    Forum Contributor
    Join Date
    09-23-2008
    Location
    UK
    Posts
    137

    Error Handling behaving weirdly

    Any ideas why, rather than returning to the output line, this just goes to the next error handler?

    Say for example cells(count,1) produces an error, then it goes to the GeneralErrHandler. But when it gets to the resume statement, it simply goes to the DateErrHandler and then to outputline rather than straight to outputline??


    Private Sub CBGetRates_Click()
    
    Do While count < 10
      errorflag = false 
      On error goto GeneralErrHandler:
      input = cells(count,1)
      
      count = count + 1
      outputline: 
      if errorflag=true then
        cells(count,2) = ErrorCode
      end if
    Loop
    
    'Error handling
    Exit Sub
    
    GeneralErrHandler:
    ErrorFlag = true
    ErrorCode = "ERROR: "
    Resume outputline:
    
    DateErrHandler:
    ErrorFlag = true
    ErrorCode = "ERROR: Trade Date not found"
    Resume outputline:
    
    
    End Sub
    Last edited by firefly2k8; 09-10-2010 at 09:47 AM.

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