Synchronised forms

E

Ericmcnulty

I am using one combo box to select to select from a list defined by another
combo box and using after update to requery the combo box. All works fine as
a single form but when the form is used as a subform the Parameter Value box
asks for a value which works fine but cant get it to work without the
parameter value coming up
 
D

Dennis

The RowSource properties will be different if the combo boxes are on a
subform instead of a form. If one is based on the other, you will be using
something like [Forms]![FormName]![ComboName]. This will obviously be invalid
if your form is then a subform of another form. It will need to be something
like this
[Forms]![Formname]![SubFormName]![Form]![ComboName]
 
E

Ericmcnulty

The row source is from a table?

Dennis said:
The RowSource properties will be different if the combo boxes are on a
subform instead of a form. If one is based on the other, you will be using
something like [Forms]![FormName]![ComboName]. This will obviously be invalid
if your form is then a subform of another form. It will need to be something
like this
[Forms]![Formname]![SubFormName]![Form]![ComboName]

Ericmcnulty said:
I am using one combo box to select to select from a list defined by another
combo box and using after update to requery the combo box. All works fine as
a single form but when the form is used as a subform the Parameter Value box
asks for a value which works fine but cant get it to work without the
parameter value coming up
 
Top