S skate Registered User. Local time Today, 02:28 Joined May 22, 2002 Messages 136 Mar 12, 2003 #1 How do you make a button control enabled/disabled depending on which tab is being viewed? I've tried Tab.enabled and TabMenu=0, but neither work? I've put the code in both current and the control click but it doesn't work
How do you make a button control enabled/disabled depending on which tab is being viewed? I've tried Tab.enabled and TabMenu=0, but neither work? I've put the code in both current and the control click but it doesn't work
C casey Registered User. Local time Today, 02:28 Joined Dec 5, 2000 Messages 448 Mar 12, 2003 #2 Look at Tab.Value indexed starting at 0 you could put the code in the On Change Event on the tab control itself select case Me.tabControl.Value case 0 case 1 etc... end select or something like that
Look at Tab.Value indexed starting at 0 you could put the code in the On Change Event on the tab control itself select case Me.tabControl.Value case 0 case 1 etc... end select or something like that