check box auto populate

  • Thread starter Thread starter kms
  • Start date Start date
K

kms

Help, Help, Help!!!

I have a subform in a mainform. I need the check box in the mainform to
autopopulate based on a value in a control box in the subform. Can someone
help with this please!!
 
When is this value in the subform become known?

Depending upon the answer to the above, you can use the subform's Current
event, or the AfterUpdate event of the control. The code, however would be
similar:

If Me.txtControlWhatever = "SomeValue" Then
Me.Parent.chkBoxName = True
Else
Me.Parent.chkBoxName = False
End If
 
Back
Top