Is there a way to Disable the tabs on a TabControl until my criteria has been met?
Here's what I want to do. There are a few tabs, and I want to force users to enter the data in the tab order I designate. Once the criteria is met...ie...mandatory fields are filled...then the next tab is enabled.
Or if I could just disable the tabs themselves, I guess I could add a command button...
Private Sub cmdPage2_Click()
Cancel = True
If My criteria is met THEN
Me.tabctlOrders.Value = 2
End If
Cancel = False
Any Suggestions?
Here's what I want to do. There are a few tabs, and I want to force users to enter the data in the tab order I designate. Once the criteria is met...ie...mandatory fields are filled...then the next tab is enabled.
Or if I could just disable the tabs themselves, I guess I could add a command button...
Private Sub cmdPage2_Click()
Cancel = True
If My criteria is met THEN
Me.tabctlOrders.Value = 2
End If
Cancel = False
Any Suggestions?