Craig,
You can use the Connection's ServerVersion property to determine the version number of the MDB.
e.g.
Dim connString As String = "Provider=Microsoft.Jet.OLEDB.4.0;Data Source=C:\nwind.mdb;"
Dim oledbConn As OleDbConnection = New OleDbConnection(connString)
oledbConn.Open()
Dim version As String = oledbConn.ServerVersion
Thanks but it returns 4.0 nomatter what .mdb file i open .97,200,202 ???
Ask a Question
Want to reply to this thread or ask your own question?
You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.