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

Deactivate MDB Conversion Wizard? 2

Status
Not open for further replies.

jlodge

Programmer
Aug 6, 2001
3
US
Has anyone been able to have Access 2003 NOT open the MDB conversion wizard? We are a large organization and we can't just convert all the Access MDBs and rollout Access 2003 overnight.

We would like to convert and rollout department by department and would like to have Access 2003 "default" to just view Access 97 mdbs without converting them. After rollout is complete, we'd like to activate the wizard.
 
I believe that you ar looking for the option menu under extra, select the tab advanced and select as default acces2000 instead of access 2002-2003. I dont know the right english words in these menus - goto a dutch version of access.

 
You can most likely set the value via code using Application.SetOption. I typically force the Delete Confirmation ON as a precaution.

....
Private Sub Form_Open(Cancel As Integer)

ApplicationUtilities.AccessMaximize
ApplicationUtilities.HideAllMenuItems 'Prevents USer from Entering Right Mouse for Design Mode!

If AutoExec.LoginCheck() = False Then 'Check NT Authority to Use Tool.
DoCmd.Quit
End If


'Set Confirm Changes to True - Used for Deletes
gcOriginalOptionState = Application.GetOption("Confirm Record Changes")

Application.SetOption "Confirm Record Changes", True


...



Steve Medvid
"IT Consultant & Web Master"

Chester County, PA Residents
Please Show Your Support...
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top