Disable auto startup...

  • Thread starter Thread starter Fred Baltus
  • Start date Start date
F

Fred Baltus

Hi,

I have a Access2000 database. On one PC I can interrupt
the startup sequence with pressing the shift key.
On another PC, this is not working. The first form
displays, but after that no other form. Maybe it is
because the tables are linked to a backend database on an
other place then on the first PC. Is there a way to open
it in design view.....There are also usergroups on the
database.

Can someone help?

Thanks,
FRed
 
Hi Fred

Are you sure the two front-end databases are *exactly* the same? I suspect
that one of them has the AllowBypassKey database property set to False.

If you have the required permissions, you can reset this with some simple
code in *another* database:

Dim db as Object
Set db = OpenDatabase("full path to mdb file")
db.Properties("AllowBypassKey") = True
db.Close
 
Back
Top