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.