ralphralph07
MIS
Hi
I've been through the site and tried all the suggestions but must be missing something as can't seem to get it to work.
I need a tab to be disabled if a control on anther tab is false.
I have the following code:
The tab control is called TabCtl0
The tab is number 9 and caleld Debtor Details
The Subform on the tab is called Frm_Debtors
Going slightly mad now i think...
Ralph
I've been through the site and tried all the suggestions but must be missing something as can't seem to get it to work.
I need a tab to be disabled if a control on anther tab is false.
I have the following code:
Code:
Private Sub Complete_AfterUpdate()
If Me.Complete = True Then
Me![Debtor Details].Visible = True
Else
Me![Debtor Details].Visible = False
End If
End Sub
The tab control is called TabCtl0
The tab is number 9 and caleld Debtor Details
The Subform on the tab is called Frm_Debtors
Going slightly mad now i think...
Ralph