combo boxes in a subform

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

is there any reason why a combo box would not work in a
subform ?

I have three combo boxes that run off each other depending
on the selection of the first combo which works fine in a
stand alone form but as soon as it's in a subform it
doesn't seem to respond.
 
If you are referencing the other combo boxes in code like
Forms!FormaName!ComboBox then the reference dies when in a subform. Change
the references to Me.ComboBox and it should work. You can also use the info
at the link below for referring to subforms and controls on subforms

http://www.mvps.org/access/forms/frm0031.htm
 
Back
Top