refreshing subforms

M

Mark Elliott

I don't think I explained my problem enough. First you
select an option from the combo box. Then a filter is
applied and the checkboxs will show what the tests the
selection passed. Now based on those checkboxes, I have a
VBA program create a temporary query. This temporary query
is the basis for the subform and is what searchs the data
the subform is based off of. Now all of that works fine,
however the subform will not reflect the changes if I
select a new option from the combo box. So my question is
based off of this how do I get the subform to refresh the
data when I select a new option as that is the only thing
not working. I hope I did a better job explaining. Oh
and I am using access 97 and it refreshes correctly if I
go to design view and then back to form view. Somebody
please help me. Thanks

PS. I reposted this so that hopefully more people will
see and help me out here. Thanks
 
P

Paul Finey

Hi Mark
After your VBA code that generates your query try,

Me![Formname]![SubformObjectName].Requery


HTH

Paul
 
J

Jonathan

-----Original Message-----
I don't think I explained my problem enough. First you
select an option from the combo box. Then a filter is
applied and the checkboxs will show what the tests the
selection passed. Now based on those checkboxes, I have a
VBA program create a temporary query. This temporary query
is the basis for the subform and is what searchs the data
the subform is based off of. Now all of that works fine,
however the subform will not reflect the changes if I
select a new option from the combo box. So my question is
based off of this how do I get the subform to refresh the
data when I select a new option as that is the only thing
not working. I hope I did a better job explaining. Oh
and I am using access 97 and it refreshes correctly if I
go to design view and then back to form view. Somebody
please help me. Thanks

PS. I reposted this so that hopefully more people will
see and help me out here. Thanks
.
Hi Mark,

In the combobox_AfterUpdate() event have you tried to
requery the subform?

Luck
Jonathan
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Similar Threads

Refreshing a subform 2
Choosing subform to display based on combo box 1
subform refresh 7
Populate a field based on a visible value in a combo box? 2
SubForms 1
Which event? 5
Tab Subforms 2
1 Main for 2 Subforms 15

Top