Click here to Skip to main content
15,917,062 members

Comments by Member 2014650 (Top 1 by date)

Member 2014650 30-Nov-15 17:55pm View    
Yes, I am trying to access the current running instance of Excel. Ie. the instance af Excel that my AddIn is running within. I want to turn off ScreenUpdating while doing modifications within the current worksheet. In VS2010 for an Excel 2010 AddIn, this could simply be done by:
Globals.ThisAddIn.Application.ScreenUpdating = false;
However, this is no longer possible in VS2015 for an Excel 2013 AddIn.