In Excel 2010, is there a setting that prevents a user from being able to access the properties of a form or ActiveX control?
I am working with a user who can open up an Excel file and insert controls (both form and ActiveX) on a worksheet. However, when that user clicks any object and goes to it's properties, the properties for the sheet are displayed instead of the properties for the selected object.
Additionally, any macros that attempt to access the control through the sheet throw an "Object doesn't support this property or method" error, because the control is null. See the example below that attempts to reference a dialog control named "CommonDialog1" on a worksheet named "AddParts":
Worksheets("AddParts").CommonDialog1.ShowOpen
I am able to run this exact same macro on other computers from the same workbook without any issues. Is there some user setting in Excel that is preventing the user from being able to access objects?
ActiveX
controls enabled/trusted by the users Office? Also, is the user on a Mac?ActiveX
as far as I'm aware is only supported in aMicrosoft Environment
– StoriKnow