General discussion
May 22, 2001 at 08:09 PM
ange5

Access 2000, ADP and ADE Files

by ange5 . Updated 25 years, 2 months ago

I have a function to determine whether a database has been converted to the MDE format:
Function adhIsMDE(dbAny As Database) As Boolean
Dim varret as variant
On Error Resume Next
varret = dbAny.Properties(“MDE”)
adhIsMDE = (varret = “T”) And (Err.Number = 0)
End Function

But I need find a similar function to determine whether a ADP File has been converted to ADE File, Please help me…

This discussion is locked

All Comments