View Full Version : How do I find what version...


domkop
02-15-2008, 10:50 AM
Hello everyone.

I've got an VB app that uses an Access db that sits on a sever. The owner of the app has no Access installled on site. The prior consultant created the app and used MS Access.

Is there a way for me to determne what version of Access this db was created in?

Thanks

Dom (new to Access)

jdraw
02-17-2008, 04:12 AM
Hello everyone.

I've got an VB app that uses an Access db that sits on a sever. The owner of the app has no Access installled on site. The prior consultant created the app and used MS Access.

Is there a way for me to determne what version of Access this db was created in?

Thanks

Dom (new to Access)

From Access Help:

The following example displays the version and build number of the currently-installed copy of Microsoft Access.

MsgBox "You are currently running Microsoft Access, " _
& " version " & Application.Version & ", build " _
& Application.Build & "."