Home |
Search |
Today's Posts |
#1
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
It depends on whether you are using the one from the Forms Toolbar or the one
from the Control Toobox. Check in VBA help by typing "Caption property" in the search box and it will bring up a menu with two or three references that will help you decide. "Jay" wrote: Hi all - The following procedure works propertly, adding two toggle buttons to the active sheet: Sub addToggles() Dim oleObj As OLEObject Set oleObj = ActiveSheet.OLEObjects.Add _ (ClassType:="Forms.ToggleButton.1", Link:=False, _ DisplayAsIcon:=False, Left:=0.75, Top:=243, Width:=72, _ Height:=30.75) Set oleObj = ActiveSheet.OLEObjects.Add _ (ClassType:="Forms.ToggleButton.1", Link:=False, _ DisplayAsIcon:=False, Left:=74.25, Top:=243, Width:=72, _ Height:=30.75) End Sub What is the syntax for changing the button 'captions' from "ToggleButton1" to "Start Date" and "ToggleButton2" to "End Date" ? Thie following 'caption' statement doesn't work seemingly because these buttons are on the worksheet (not on a user form): Activesheet.ToggleButton1.Caption = "Start Date". -- Thanks for any advice, Jay |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Moving togglebuttons | Excel Discussion (Misc queries) | |||
Commandbutton caption change | Excel Programming | |||
How to change Button Caption? | Excel Programming | |||
change the value of togglebuttons | Excel Programming | |||
ToggleButtons are strange | Excel Programming |