Version of Access

  • Thread starter Thread starter ReidarT
  • Start date Start date
R

ReidarT

Is it possible to programatically find what version of Access a user has
installed.
The reason is to have the same version SR and SP and Jet. If so, I want to
send a message to the user to update.
regards
reidarT
 
Thanks alot, works fine
reidarT
Allen Browne said:
In recent versions, to get the basic version info:
Application.Version
In older versions:
SysCmd(acSysCmdAccessVer)

For more complete version info, including being able to determine the
service pack, see:
http://www.mvps.org/access/api/api0065.htm

For JET, grab this API call also:
http://www.mvps.org/access/api/api0010.htm
and you can then get the JET service pack info as:
=fGetProductVersion(fReturnSysDir() & "\msjet40.dll")
 
Back
Top