Home |
Search |
Today's Posts |
|
#1
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
When I right click on an ActiveX control in a worksheet, I have an
opportunity to set and learn the control's properties, including changing the control's name. How do I do that for the old controls from the Forms toolbar? In particular, how do I learn/set the control's name? I know how to do this within the code, e.g.: ActiveSheet.DropDown(1).name = "PizzaMenu" But cannot seem to find the control property, for a Forms control, via the GUI. -- http://www.standards.com/; Howard Kaikow's web site. ------------------------------------------------ |
#3
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
In the Insert | Name menu, that's a bad interface.
I had given an example of how to do it in VBA in my original posting. Alas, Excel 97, 2000 and 2002 all treat, e.g., DropDowns as a hidden object and offer no Help. Have not yet checked the Help in Excel 95. -- http://www.standards.com/; Howard Kaikow's web site. ------------------------------------------------ "Chip Pearson" wrote in message ... Howard, You can manually change the name by selecting the control (right-click) and entering the name in the Name box, the same place you type in range names. In VBA, use something like ActiveSheet.DropDowns(1).Name = "TheNewName" -- Cordially, Chip Pearson Microsoft MVP - Excel Pearson Software Consulting, LLC www.cpearson.com "Howard Kaikow" wrote in message ... When I right click on an ActiveX control in a worksheet, I have an opportunity to set and learn the control's properties, including changing the control's name. How do I do that for the old controls from the Forms toolbar? In particular, how do I learn/set the control's name? I know how to do this within the code, e.g.: ActiveSheet.DropDown(1).name = "PizzaMenu" But cannot seem to find the control property, for a Forms control, via the GUI. -- http://www.standards.com/; Howard Kaikow's web site. ------------------------------------------------ |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Check Box (Form Control) | Excel Discussion (Misc queries) | |||
Control on Form | Excel Discussion (Misc queries) | |||
2007 Form Control/ActiveX Control font difference | Excel Discussion (Misc queries) | |||
Using form control names in SQL | Excel Discussion (Misc queries) | |||
How do I set up and use a group box form control? | Excel Discussion (Misc queries) |