Refer To Controls in a Frame in Worksheet
问题 I have the Class Module , and I use it to handle Click event. I use Macro3() to link events with button on the Frame T1 and it works. I have hundred of Frames (ActiveX Control) with names like T1,T2,T3... . How do I reference the controls in each frame? I tried ActiveSheet.Shapes("T1").Controls("title_pic_tog") . It doesn't work. If we can make this work then I can use a variable to replace Shapes("t1") . Option Explicit Public WithEvents cBox As MSForms.ToggleButton Private Sub cBox_Click()