Application Version

B

b_lwalker

I've developed an Access database on 2002, but it also needs to run on
2000 machines.

I have coded Application.Version to limit various functions that cause
problems in the earlier version, but this doesn't seem to work (i.e.
doesn't recognise the "Version" module).

How can I find out the Access version being used in Access 2000 code?
 
A

Allen Browne

Use:
SysCmd(acSysCmdAccessVer)

Results:
9.0 = Access 2000
10.0 = Access 2002
11.0 = Access 2003
 
Top