Refresh Pop up

  • Thread starter Thread starter don
  • Start date Start date
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
 
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
 
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

Similar Threads

Basic Questions 4
Pop-up form that creates record that links 1:1 to main form 0
Access Form Refresh 1
Last date 3
Link pop up form data with main form data 3
IIf & qryCount 1
Resize Pop Up Form 4
Pop Up Form 1

Back
Top