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 SkipVought on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

How to find Access Version No.

Status
Not open for further replies.

batteam

Programmer
Sep 12, 2003
374
0
0
US
Does anyone know of any VBA code that can be put behind a form that will pull out the Version Number of Access, e.g. Access 97, Access 2000, Access 2007? The Environ function pulls out a lot of data, but I did not see it pulling out the Access version number.

Thanks for any help you can offer.
 
pwise: Could you provide a little more information, e.g. an example of how Version would be used in code to return the Access version number? Thanks.
 
How 'bout putting this code behind a command button
Code:
MsgBox "You are currently running Microsoft Access, " _
    & " version " & Application.Version & ", build " _
    & Application.Build & "."
 
Thanks for your help. I see that 'Application.Version' is the code I was looking for.
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top