0

I have some issue while application is starting, it does not give any errors and window completely with no control. Here is screenshot.
So my question is, can I somehow turn on debug mode and see what's happened? enter image description here

nick318
  • 575
  • 4
  • 18

2 Answers2

1

There is no hidden debug mode, or anything like that, in Microsoft Access. There are things you can do, however:

  1. Use the shift bypass key

Using the bypass key will stop any code from automatically starting, allowing you to alter the database before it crashes

  1. Using Control + Break

Using Control + Break stops the currently running code, and takes you to the VBA editor. However, if the application is not responding, it might not respond to Control + Break either.

  1. Remove trust from the database

Using the security centre, you can untrust a database, blocking most code. This will allow you to access and copy database objects without code interfering.

  1. Debug causes of database crashes (e.g. decompile)

View this answer for a guide to debug causes of database crashes. Usually, decompiling does wonders.

Erik A
  • 31,639
  • 12
  • 42
  • 67
0

Hold down Shift button(s) while you open the file.

Gustav
  • 53,498
  • 7
  • 29
  • 55