D
Doekoe
In our Access application we open JPG, PDF en XLS file. I use the
Shell command for this.
RetVal = Shell("C:\Program Files\Adobe\Reader 9.0\Reader\AcroRd32 " &
fNamePDF, vbMaximizedFocus)
This works fine however one big issue here. As you can see in the
above example I need to program the whole path. With Adobe I need to
change this path after every update (Reader 9.0), and so I have to
update alle clients to latest version. Now I have the same with
Excel.
RetVal1 = Shell("C:\Program Files\Microsoft Office\OFFICE12\Excel.exe
" & fNameExcel, vbMaximizedFocus)
We have clients using office 2003 (OFFICE11) and Office 2007
(OFFICE12).
Is there a way to avoid the paths and open the documents with the
available Adobe version and Excel version on the clients computer?
Thanks in advance.
Dirk
Shell command for this.
RetVal = Shell("C:\Program Files\Adobe\Reader 9.0\Reader\AcroRd32 " &
fNamePDF, vbMaximizedFocus)
This works fine however one big issue here. As you can see in the
above example I need to program the whole path. With Adobe I need to
change this path after every update (Reader 9.0), and so I have to
update alle clients to latest version. Now I have the same with
Excel.
RetVal1 = Shell("C:\Program Files\Microsoft Office\OFFICE12\Excel.exe
" & fNameExcel, vbMaximizedFocus)
We have clients using office 2003 (OFFICE11) and Office 2007
(OFFICE12).
Is there a way to avoid the paths and open the documents with the
available Adobe version and Excel version on the clients computer?
Thanks in advance.
Dirk