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
 
Back
Top