Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Mike Lewis on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Updating/Refreshing Subform

Status
Not open for further replies.

2ShotLatte

Technical User
Jul 1, 2003
7
0
0
US
I have a main form (Form1) with a subform. Subform displays selected data from Table1. The user would click on a command on Form1 to open Form2. Form2 and Subform use Table1. On Form2, the user would enter all data then close the form. Problem is Subform does not update/refresh. Any thoughts would be helpful.
 
this sounds cheezy, but try this...

in the On Close event of Form2 include this:

DoCmd.Close acForm, "Form1"
DoCmd.OpenForm "Form1"

hope this helps you.
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top