Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to open program made by access in design mode?

Tags:

vba

ms-access

I have a program made and developed by Microsoft access 2003 but i can't open it's VBA code or see any tables or use the design mode even by using alt + F11

it's only open the program interface

so how i can do this?

like image 380
user3290334 Avatar asked Sep 07 '14 08:09

user3290334


2 Answers

If the application has been compiled to a mde (or accDE), then design mode will not be available for forms/reports and VBA code.

Assuming you have an mdb or accDB (not an mde or accDE in which design changes are NOT possible), then you should and can modify the application.

The first suggestion to hold down the shift key during application startup usually works. However, the shift key can be disabled. That being the case, then simply create a new blank database and then import all objects from the original - this thus will allow you to launch/open the application without any startup code running.

like image 76
Albert D. Kallal Avatar answered Oct 01 '22 18:10

Albert D. Kallal


You can do this by pressing shift key while opening the mdb.

like image 42
kiks73 Avatar answered Oct 01 '22 20:10

kiks73