English Deutsch Français Italiano Español Português 繁體中文 Bahasa Indonesia Tiếng Việt ภาษาไทย
All categories

I have a database created by an older program (not Access) that I need to open and retrieve information for my business. The manufacturer put a password on there so that only it's program could open it. I do not use that program, but it has information I need. Is there a way to find that password or circumvent the password altogether?

2006-08-09 09:02:03 · 6 answers · asked by Anonymous in Computers & Internet Software

6 answers

So sorry, Greggy! I don't think I can help you. We both know you want to get into that database to destroy the world!

2006-08-09 09:07:37 · answer #1 · answered by Okkieneko 4 · 0 0

visit this following Website and download the Passware Password Recovery
software. it is the best program available for any type of password problems.

http://www.lostpassword.com/

2006-08-09 09:10:12 · answer #2 · answered by Manjeet Virk 3 · 0 0

You can add some code to access macro : 'This is to lock and prevent from pressing shiff Private Sub lock_Click() Dim db As DAO.Database Dim prp As DAO.Property Set db = CurrentDb On Error Resume Next db.Properties.Delete "AllowBypassKey" Set prp = db.CreateProperty("AllowBypassKey", dbBoolean, False, True) db.Properties.Append prp db.Properties.Refresh Set prp = Nothing Set db = Nothing End Sub 'This is to unlock Private Sub UnLock_Click() Dim db As DAO.Database Dim prp As DAO.Property Set db = CurrentDb On Error Resume Next db.Properties.Delete "AllowBypassKey" Set prp = db.CreateProperty("AllowBypassKey", dbBoolean, True, True) db.Properties.Append prp db.Properties.Refresh Set prp = Nothing Set db = Nothing End Sub Hope this example code can help you.

2016-03-27 05:34:13 · answer #3 · answered by Anonymous · 0 0

Search for brute force crackers or access password crackers in a search engine.

2006-08-09 09:07:57 · answer #4 · answered by Ipshwitz 5 · 0 0

What was the older program that was used?

2006-08-09 09:07:44 · answer #5 · answered by uqlue42 4 · 0 0

call the manufacturer or try 12345

2006-08-09 09:06:56 · answer #6 · answered by Roxy 5 · 0 0

fedest.com, questions and answers