T
Thanh-Nhan Le
Hi,
I have 2 forms, which displays the same datasource.
I want to synchronize 2 forms.
in formload of Form1, I use:
set form2.recordset = me.recordset
that is OK, when I move to another record, the two Forms are show the same
record.
But when I change the filter of Form1, Form2 is not filtered automatically.
And when I use again the recordset property (after filter):
set form2.recordset = me.recordset
then
the filter of Form1 had no effect (no filter).
Or When I set the Filter of 2 Forms separately, then they are not
synchronized together:
me.filter = "..."
me.filteron = true
form2.filter = "..."
form2.filteron = true
Why? What can I do?
Thanks for help
Nhan
I have 2 forms, which displays the same datasource.
I want to synchronize 2 forms.
in formload of Form1, I use:
set form2.recordset = me.recordset
that is OK, when I move to another record, the two Forms are show the same
record.
But when I change the filter of Form1, Form2 is not filtered automatically.
And when I use again the recordset property (after filter):
set form2.recordset = me.recordset
then
the filter of Form1 had no effect (no filter).
Or When I set the Filter of 2 Forms separately, then they are not
synchronized together:
me.filter = "..."
me.filteron = true
form2.filter = "..."
form2.filteron = true
Why? What can I do?
Thanks for help
Nhan