aaabuhalime
Instructor
Hi,
I have form includes students information, I am trying to disable some fields based on each selection, for example if I select student some fields get greyed out based on one condtion I did that ,I am trying to to add an other condtion to become combined condtion, I need some help to do so, here is what I have
this code goes behind whoIsIt field, I want to add an other condition status, so when the WhoIsIt is "Student", and Status"Active" I want o disable the fields, and where the code should go behind Status or Who isit after update any thought on how to do that ?
Thanks
I have form includes students information, I am trying to disable some fields based on each selection, for example if I select student some fields get greyed out based on one condtion I did that ,I am trying to to add an other condtion to become combined condtion, I need some help to do so, here is what I have
Code:
Select Case Me.WhoIsIt
Case "Student"
Wt1.Enabled = True
else
W1.Enabled = True
End Sub
Thanks