Newbie2012
Donna H
- Local time
- Tomorrow, 02:05
- Joined
- Jun 28, 2012
- Messages
- 33
I can't open you DB as I only have Access '03 currently.
However if you are using an unbound, calculated, control on a continuous form, then you will find that all instances of that control will show a result that is reflective of the Record that currently holds focus.
Forms![Categories And Products]!cboCategories
Me.cboProducts.Requery
Hi, I had a look and changed tables, relations, form, recordsources and vba...
The problem was partly in the table structure and the relations with foreign keys etc.
In the form itself there were similar problems and the dropdown boxes needed to be bound, set up and a bit of coding!~)
If this is so your Criteria should be; [CODE said:Forms![Categories And Products]!cboCategories[/CODE]
...sorry you need this one:
Private Sub Form_Current()
Me.cboProducts.Requery
End Sub