Refresh Pop up

D

don

Sorry if this is obvious I have a continuos Form and a pop up form
linked to selected record. Is there a way of updating the pop up
window when I select a different record in the main form

Thank you in anticipation

donH
 
J

Jim Bunton

Assuming that he pop up form has a rowsource which is related to some filed
in the main form:

eg pop up form rowsource:
SELECT whatever from wherever WHERE pop up rowsource.column.value = some
column of the main form rowsource

Then whatever you click to make the pop up form display in the onclick event
code add

[Forms]![MyPopUpFom].requery

Jim Bunton
 
D

don

Assuming that he pop up form has a rowsource which is related to some filed
in the main form:

eg  pop up form rowsource:
SELECT whatever from wherever WHERE pop up rowsource.column.value = some
column of the main form rowsource

Then whatever you click to make the pop up form display in the onclick event
code add

[Forms]![MyPopUpFom].requery

Jim Bunton




Sorry if this is obvious I have a continuos Form and a pop up form
linked to selected record.  Is there a way of updating the pop up
window when I select a different record in the main form
Thank you in anticipation
donH- Hide quoted text -

- Show quoted text -

Thanks Jim
 

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