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

Database coversion from Access 97 to 2002

Status
Not open for further replies.

123rose

Vendor
Aug 13, 2002
7
US
Access experts,

I have a database compiled in Access Version 97. When I converted into Access Version 2002, how can I change the code for such as "DoCmd.DoMenuItem acFormBar, acRecordsMenu, acSaveRecord, , acMenuVer70".
I appreciate it very much.

Rose
 
The RunCommand method replaces the DoMenuItem method of the DoCmd object.

Example:

docmd.RunCommand acCmdSaveRecord


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

Part and Inventory Search

Sponsor

Back
Top