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 SkipVought on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Refresh form, but remain on current record 1

Status
Not open for further replies.

emilybartholomew

Technical User
Aug 3, 2001
82
0
0
US
Is there a way to refresh the contents of a form, but remain focused on the current record? Or is there a form function where you can jump to a particular record (i.e. saving the record id, refreshing, then jumping back to that record)?
I'm using Access 2000.
 
Try using this instead of implicitly Refreshing the Form or Sub Form (Assuming that you're not already using this):

DoCmd.RunCommand acCmdRefresh

Good Luck

Bill
 
Can you use this to refresh a form other than the one that the code is running from?

 
Never mind- I figured it out. I created a subroutine on the form that I wanted to refresh (with your code as the body of the subroutine), and then called the sub from the other form. It works great - Thanks!!!!!
 
To Refresh another Form, use:

Forms!TheFormName.Refresh

The Form you are attempting to Refresh must of course be open.

DoCmd.RunCommand acCmdRefresh will refresh the Form it is being called from.
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top