From: Bob Darlington on
I want to write a line of code to check the version of MS Access being used
by my clients, some of which have multiple versions installed.
I am distributing my application as an Access 2002 runtime, but want to know
what they're running it on.

--
Bob Darlington
Brisbane


From: Douglas J. Steele on
Try: SysCmd(acSysCmdAccessVer) (and SysCmd(acSysCmdRuntime) to see whether
or not they're using the runtime)

--
Doug Steele, Microsoft Access MVP
http://www.AccessMVP.com/djsteele
Co-author: "Access 2010 Solutions", published by Wiley
(no e-mails, please!)



"Bob Darlington" <bob(a)notheredpcman.com.au> wrote in message
news:4c648086$0$316$afc38c87(a)news.optusnet.com.au...
>I want to write a line of code to check the version of MS Access being used
>by my clients, some of which have multiple versions installed.
> I am distributing my application as an Access 2002 runtime, but want to
> know what they're running it on.
>
> --
> Bob Darlington
> Brisbane
>

From: Bob Darlington on
Thanks Douglas.
Just what I needed.

--
Bob Darlington
Brisbane
"Douglas J. Steele" <NOSPAM_djsteele(a)NOSPAM_gmail.com> wrote in message
news:i41vg0$cnu$1(a)news.eternal-september.org...
> Try: SysCmd(acSysCmdAccessVer) (and SysCmd(acSysCmdRuntime) to see whether
> or not they're using the runtime)
>
> --
> Doug Steele, Microsoft Access MVP
> http://www.AccessMVP.com/djsteele
> Co-author: "Access 2010 Solutions", published by Wiley
> (no e-mails, please!)
>
>
>
> "Bob Darlington" <bob(a)notheredpcman.com.au> wrote in message
> news:4c648086$0$316$afc38c87(a)news.optusnet.com.au...
>>I want to write a line of code to check the version of MS Access being
>>used by my clients, some of which have multiple versions installed.
>> I am distributing my application as an Access 2002 runtime, but want to
>> know what they're running it on.
>>
>> --
>> Bob Darlington
>> Brisbane
>>
>


From: JohnC on
Also,
Version returns which version they are running.
John

"Bob Darlington" <bob(a)notheredpcman.com.au> wrote in message
news:4c649ef9$0$2080$afc38c87(a)news.optusnet.com.au...
> Thanks Douglas.
> Just what I needed.
>
> --
> Bob Darlington
> Brisbane
> "Douglas J. Steele" <NOSPAM_djsteele(a)NOSPAM_gmail.com> wrote in message
> news:i41vg0$cnu$1(a)news.eternal-september.org...
>> Try: SysCmd(acSysCmdAccessVer) (and SysCmd(acSysCmdRuntime) to see
>> whether or not they're using the runtime)
>>
>> --
>> Doug Steele, Microsoft Access MVP
>> http://www.AccessMVP.com/djsteele
>> Co-author: "Access 2010 Solutions", published by Wiley
>> (no e-mails, please!)
>>
>>
>>
>> "Bob Darlington" <bob(a)notheredpcman.com.au> wrote in message
>> news:4c648086$0$316$afc38c87(a)news.optusnet.com.au...
>>>I want to write a line of code to check the version of MS Access being
>>>used by my clients, some of which have multiple versions installed.
>>> I am distributing my application as an Access 2002 runtime, but want to
>>> know what they're running it on.
>>>
>>> --
>>> Bob Darlington
>>> Brisbane
>>>
>>
>
>