Link to home
Start Free TrialLog in
Avatar of Murray Brown
Murray BrownFlag for United Kingdom of Great Britain and Northern Ireland

asked on

Excel VB.net Add-in vs Managed Spreadsheet

Hi. I am developing several add-ins in tandem and find that the SheetChange causes complication because it fires no matter which add-in you are using. I was thinking of just foing a straight Excel 2007 Workbook application instead. What are the advantages of doing it this way?

    Private Sub Application_SheetChange(ByVal Sh As Object, ByVal Target As Microsoft.Office.Interop.Excel.Range) Handles Application.SheetChange
        MsgBox("Hello")
    End Sub
ASKER CERTIFIED SOLUTION
Avatar of Jan Karel Pieterse
Jan Karel Pieterse
Flag of Netherlands image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Avatar of Murray Brown

ASKER

thanks