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

Determine Access Version using VBA 1

Status
Not open for further replies.

sathandle

Programmer
Apr 22, 2002
84
US
How can I determine the version of Access a person is running using VBA?
definition of 'less behind': "not fully caught up, digging out slowly, one-week delay to "The IT hit the fan."
 
You can use either:
Code:
DBEngine.Version
or
Code:
SysCmd(acSysCmdAccessVer)
You'll need to refer to the online help for the Version property to identify which version numbers apply to which releases of Access.
 
Sorry,
That gives me the version of the parent DB
What i'm trying is;
passing a variable (pull fath of database) and trying to determine its access version
thx
RGB
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top