I have a Form - With a combo Box "Type" This selects a category eg TK, RR, PM etc
In the subform it shows the records with field [PT] = Type
On the subform I want to limit what Fields are visible dependant on the Type Selected.
To this end i have set the OnCurrent to
However when the type is changed the visible does not change - even though the Category listed does change to match the type selected.
Thoughts??
In the subform it shows the records with field [PT] = Type
On the subform I want to limit what Fields are visible dependant on the Type Selected.
To this end i have set the OnCurrent to
Code:
If Parent![Type] = "TK" then ME.PL.Visible = False Else if Parent![Type] = RR then ME.PL.Visible = True . . Endif
Thoughts??
Comment