M
Mesa
Hey guys, I have been stuck on this one for awhile. I have a textbox
labeled "College or University", and I want to be able to type any
value for it to enable 2 other textboxes labeled "Degree" and "Field of
Study". How can I code this so that I can just type anything in the
"College or University" textbox and it enables the other two and also
if nothing is typed it will stay disabled. Your help is VERY
appreciated!!!
Private Sub Form_Current()
Select Case Me![College or University] = "??????????"
Case True
Me![Degree].Enabled = True
Me![Field of Study].Enabled = True
Case False
Me![Degree].Enabled = False
Me![Field of Study].Enabled = False
End Select
End Sub
_________________________________________________
Private Sub College_or_University_Change()
Select Case Me![College or University] = "??????????"
Case True
Me![Degree].Enabled = True
Me![Field of Study].Enabled = True
Case False
Me![Degree].Enabled = False
Me![Field of Study].Enabled = False
End Select
End Sub
labeled "College or University", and I want to be able to type any
value for it to enable 2 other textboxes labeled "Degree" and "Field of
Study". How can I code this so that I can just type anything in the
"College or University" textbox and it enables the other two and also
if nothing is typed it will stay disabled. Your help is VERY
appreciated!!!
Private Sub Form_Current()
Select Case Me![College or University] = "??????????"
Case True
Me![Degree].Enabled = True
Me![Field of Study].Enabled = True
Case False
Me![Degree].Enabled = False
Me![Field of Study].Enabled = False
End Select
End Sub
_________________________________________________
Private Sub College_or_University_Change()
Select Case Me![College or University] = "??????????"
Case True
Me![Degree].Enabled = True
Me![Field of Study].Enabled = True
Case False
Me![Degree].Enabled = False
Me![Field of Study].Enabled = False
End Select
End Sub