Hey,
Hopefully this is an easy question: I have a Combo Box (Combo2) and its linked to a Query which populates it with 4 items from a table called tblModules.
What i cant figure out the syntax for is when i select an item in the combo box it will then change a List Boxes Visibility to = True
So for example,
I need this because i have 4 List Boxes with Visibility set to False, on top of each other, and i want to use the combo box to select a Module which will then make the appropriate List Box Visible which will be populated with contact information.
So far i got this which just throws me an Invalid Qualifier Error:
Help Greatly Appreciated 
Hopefully this is an easy question: I have a Combo Box (Combo2) and its linked to a Query which populates it with 4 items from a table called tblModules.
What i cant figure out the syntax for is when i select an item in the combo box it will then change a List Boxes Visibility to = True
So for example,
Code:
if item in combo box clicked then lstNetworking.Visible = True
So far i got this which just throws me an Invalid Qualifier Error:
Code:
Private Sub Combo2_Click()
If Me.Combo2.OnClick = "Networking" Then lstNetworking.Visible = True
End Sub
