Jul 10, 2002 #1 Gazer44 Technical User Mar 4, 2002 211 US I've got a tick box on a 'MainForm'. When i tick it i want a field (FieldA) on a 'Subform' to become enabled. I've got following code in tick box 'on click' properties but it's not working. Forms![MainForm]![Subform].Form!FieldA.Enabled = True Any ideas
I've got a tick box on a 'MainForm'. When i tick it i want a field (FieldA) on a 'Subform' to become enabled. I've got following code in tick box 'on click' properties but it's not working. Forms![MainForm]![Subform].Form!FieldA.Enabled = True Any ideas
Jul 10, 2002 Thread starter #2 Gazer44 Technical User Mar 4, 2002 211 US Have sorted this out, my mistake I had the subform's name on the Main Form slightly different from its actual name. This works:- Me![SubformName].Form![FieldName].Enabled = True cheers Upvote 0 Downvote
Have sorted this out, my mistake I had the subform's name on the Main Form slightly different from its actual name. This works:- Me![SubformName].Form![FieldName].Enabled = True cheers