I get the following error when running my code. Which is working with Excel DNA

System.AccessViolationException was unhandled Message: Attempted to read or write protected memory. This is often an indication that other memory is corrupt.

The first time through it works fine, the second time it throws the above error.

Here's my code:

Public Shared Function RangeExists(ByVal sName As String) As ExcelReference 

        Dim rRng As ExcelReference 

        Try 
             'This is where the error occurs
             rRng = XlCall.Excel(XlCall.xlfEvaluate, sName)  
         Catch 
             Try 
                 rRng = XlCall.Excel(XlCall.xlfEvaluate, "!" & sName) 
             Catch 
                 rRng = Nothing 
             End Try 
         End Try 

        Return rRng 

    End Function

I actually have similar code in a UDF that works fine, never had problems.

link|improve this question

In what context are you calling this function - is it perhaps from a ribbon event handler perhaps? The Excel C API (XlCall etc.) should not be used directly from a ribbon event handler, while the COM automation interface should be fine. If you do want to call the C API from a ribbon event handler, you need to put it in a macro that you call via Application.Run("myMacro",...) – Govert Feb 7 at 22:29
I am calling it from a form. The button on the form is clicked and then it calls to get the range. When I open the form it gets this same range in the same manner and has no problem, it is only the second time it is called that it has a problem. The formula that it is called in resides in a class that is shared. – Jon49 Feb 7 at 22:53
feedback

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
or
required, but never shown

Browse other questions tagged or ask your own question.