W
WIlliam Barnes
Using Excel 2000 under Win 2K Pro with MS ActiveX Data Objects 2.5 Library:
I would like to be able to determine if a database has been modified since
my last read. I create my database connection thus:
Dim db as ADODB.Connection
Set db = New ADODB.Connection
With db
If .State = adStateOpen Then .Close
.Provider = "Microsoft.Jet.OLEDB.4.0"
.Mode = adModeRead
.Open DbPathString
End With
Is there a property or attribute of the database connection that I can
access to determine this information?
I would like to be able to determine if a database has been modified since
my last read. I create my database connection thus:
Dim db as ADODB.Connection
Set db = New ADODB.Connection
With db
If .State = adStateOpen Then .Close
.Provider = "Microsoft.Jet.OLEDB.4.0"
.Mode = adModeRead
.Open DbPathString
End With
Is there a property or attribute of the database connection that I can
access to determine this information?