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

View all records after opening in "add new record" format

Status
Not open for further replies.

sdavid74

Technical User
May 28, 2002
21
US
I have a form set to open up to a blank record by inserting this script, (from this forum),

DoCmd.OpenForm "OrientationMain", , , , acFormAdd

and from this page I can't see any of the old records, which I'm OK with, but when I try to insert a command button that will open up the form in regular mode, it doesn't do anything. Any ideas as to how I can see the rest of the records?
 

In the onclick event of your button include the following

Me.dataentry = false
Me.requery

Robert Berman
 
Robert, thanks for the tip. That's exactly what I needed.
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top