Hi All
In the project I'm developing, I've been making liberal use of this command "ActiveSheet.CheckBoxes(i)" to reference objects in the checkbox collection within looping constructs. I've even figured out how to assign these objects to collections of my own making:
____
Dim checkboxcoll As New Collection
checkboxcoll.Add (ActiveSheet.CheckBoxes(1))
____
What I need to know is how to do this with other objects such as command buttons, option buttons, etc. I know this is a pretty basic question. I'm just new to this, and don't have access to a reference to all objects, methods, properties, etc in VBA. (My VBA help file was never installed) Rather than answering my question directly, if anyone knows of an exhaustive online reference of this type, that would be a life-saver.
Thanks in advance.
James M.
In the project I'm developing, I've been making liberal use of this command "ActiveSheet.CheckBoxes(i)" to reference objects in the checkbox collection within looping constructs. I've even figured out how to assign these objects to collections of my own making:
____
Dim checkboxcoll As New Collection
checkboxcoll.Add (ActiveSheet.CheckBoxes(1))
____
What I need to know is how to do this with other objects such as command buttons, option buttons, etc. I know this is a pretty basic question. I'm just new to this, and don't have access to a reference to all objects, methods, properties, etc in VBA. (My VBA help file was never installed) Rather than answering my question directly, if anyone knows of an exhaustive online reference of this type, that would be a life-saver.
Thanks in advance.
James M.