N
newtoaccess
I am doing something wrong....below is what I've been trying to make
work. I want the combo box selection: "Good","Worn", "Broken", "Out
for Repair" - to enable or disable the (Describe Status) text box. If
the condition is good, there would be no need to input data in the
(Describe Status) txt box.
Private Sub Condition_Status_AfterUpdate()
Select Case Me.[Condition_Status].Enable
Case "Good"
Me.[Describe_Status].Enable = False
Case "Worn"
Me.[Describe_Status].Enable = False
Case "Broken"
Me.[Describe_Status].Enable = True
Case "Out for Repair"
Me.[Describe_Status].Enable = True
End Select
End Sub
Any help would be appreciated,
John
work. I want the combo box selection: "Good","Worn", "Broken", "Out
for Repair" - to enable or disable the (Describe Status) text box. If
the condition is good, there would be no need to input data in the
(Describe Status) txt box.
Private Sub Condition_Status_AfterUpdate()
Select Case Me.[Condition_Status].Enable
Case "Good"
Me.[Describe_Status].Enable = False
Case "Worn"
Me.[Describe_Status].Enable = False
Case "Broken"
Me.[Describe_Status].Enable = True
Case "Out for Repair"
Me.[Describe_Status].Enable = True
End Select
End Sub
Any help would be appreciated,
John