Requery problem

J

Jon22

I have a main form "FormMain" with Record Source "tblFormMain" FormMain
contains a subform "FormSub" with Record Source "tblFormSub".

FormSub is displayed on FormMain in datasheet view.

FormMain has a field "TextA" who's control source is a DSum expression which
looks up the sum of a field in a query based on values entered into FormSub.

I can't seem to get TextA to update straight after I update fields in
FormSub. I tried making the fields in FormSub perform a Requery on TextA in
their after update event, but this only makes the cursor jump back to the
first field in FormSub and is one update behind each change.

The FormMain.refresh command after updating fields in FormSub seems to do it
but again, the cursor does not tab into the next field in FormSub.

Is there a way to make TextA more 'dynamic'?
 
D

Douglas J. Steele

In the AfterUpdate event of the subform, you should be able to use

Me.Parent.TextA.Requery
 

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

Top