R
rashar via AccessMonster.com
Hello,
I'm looking for a way to obtain the file path of an adobe executeable in an
unknown folder.
For example: Computer 1 has Adobe Reader 7 installed. Computer 2 has Adobe 8
installed.
I could code something like
I'm looking for a way to obtain the file path of an adobe executeable in an
unknown folder.
For example: Computer 1 has Adobe Reader 7 installed. Computer 2 has Adobe 8
installed.
I could code something like
Code:
strAdobe7 = Dir("C:\Program Files\Adobe\
Acrobat 7.0\Reader\AcroRd32.exe") [\code] on Computer 1, but what if they
update to Adobe 9? Then I'll have to use the Adobe\Acrobat 9 line.
What I'm looking for is something like the code listed below so that it
doesn't matter what version is installed on Computer 1 or 2, the code will
find the correct path...
strAdobe = Dir("C:\Program Files\Adobe\..\\AcroRd32.exe")
Any suggestions on this?
Thanks in advance.