A
Agnelo Fernandes
I have 3 controls in my form. [Course], [Other] present in main form and
[Speciality] in Subform.
Now, [Course] in mainform is a combo containing 4 options: Foundation Year
1, Foundation Year 2, Undergraduate, Others.
Basically, when I select ''Others'' option - the [Other] control becomes
visible orelse its invisble. I did that using the below code in after update:
If Me.Course = "Others" Then
Me.Other.Visible = True
Else: Me.Other.Visible = False
End If
That worked for me.
However, I would now like to make 2 controls i.e [Other] in main form and
[Speciality] in subform to become visble on selection of option ''Other''
orelse it should be invisible.
Any help?
[Speciality] in Subform.
Now, [Course] in mainform is a combo containing 4 options: Foundation Year
1, Foundation Year 2, Undergraduate, Others.
Basically, when I select ''Others'' option - the [Other] control becomes
visible orelse its invisble. I did that using the below code in after update:
If Me.Course = "Others" Then
Me.Other.Visible = True
Else: Me.Other.Visible = False
End If
That worked for me.
However, I would now like to make 2 controls i.e [Other] in main form and
[Speciality] in subform to become visble on selection of option ''Other''
orelse it should be invisible.
Any help?