How do I open a program made by accessing in development mode?

I have a program created and developed by Microsoft access 2003 but I cannot open its VBA code or see any tables or use design mode even with alt + F11

it opens the program interface

so how can i do this?

+3


source to share


2 answers


If the application was compiled in mde (or accDE) then design mode will not be available for forms / reports and VBA code.

Assuming you have mdb or accDB (not mde or accDE where design changes are NOT possible) then you should and can change the application.



The first suggestion to hold down the shift key while launching the application usually works. However, the shift key can be disabled. In this case, just create a new empty database and then import all objects from the original - this will allow you to launch / open the application without running the startup code.

+8


source


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



+4


source







All Articles