Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Mike Lewis on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Can Not Get into Design on Forms or Reports Help

Status
Not open for further replies.

chiplarsen

IS-IT--Management
Jan 8, 2004
87
US
I have an Access 2003 database that created by someone else. When I go to the Database Window, I can not edit Reports or Forms. I can get into design for the tables, queries, and macros. The database is saved as a mdb, not a mde. Does anyone know why this is?
 
Thank you. I see what you are saying. It really act likes a mde. Is there another way to determine if it trully is a mde?
 
In another database:

Code:
Sub CheckMDE()
Dim db As Database

'This is the path and name of suspect db
strDB = "C:\Docs\Test.mdb" 

Set db = OpenDatabase(strDB)

If db.Properties("MDE") = "T" Then
    MsgBox strDB & " is an MDE"
End If
End Sub

 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top