Home |
Search |
Today's Posts |
#1
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
Any apparent errors from the below Macro?
Sub LoadMyPdf() Dim Filt As String Dim Title As String Dim Filename As Variant 'Set up list of File Filters Filt = "PDF Files (*.pdf),*.pdf," Title = "Select a pdf file to open" Filename = Application.GetOpenFilename _ (Filefilter:=Filt, Title:=Title) Shell "C:\Program Files (x86)\Adobe\Reader 8.0\Reader\AcroRd32.exe" & Filename, 1 'Shell Filename End Sub |
#2
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
If you know that you're pointing to the correct location for the reader, then
try adding a space character after the .exe ....der\AcroRd32.exe " & ... JMay wrote: Any apparent errors from the below Macro? Sub LoadMyPdf() Dim Filt As String Dim Title As String Dim Filename As Variant 'Set up list of File Filters Filt = "PDF Files (*.pdf),*.pdf," Title = "Select a pdf file to open" Filename = Application.GetOpenFilename _ (Filefilter:=Filt, Title:=Title) Shell "C:\Program Files (x86)\Adobe\Reader 8.0\Reader\AcroRd32.exe" & Filename, 1 'Shell Filename End Sub -- Dave Peterson |
#3
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
ps.
After trying to get the filename from the user, you may want: if filename = false then exit sub end if Just in case they clicked the cancel button. JMay wrote: Any apparent errors from the below Macro? Sub LoadMyPdf() Dim Filt As String Dim Title As String Dim Filename As Variant 'Set up list of File Filters Filt = "PDF Files (*.pdf),*.pdf," Title = "Select a pdf file to open" Filename = Application.GetOpenFilename _ (Filefilter:=Filt, Title:=Title) Shell "C:\Program Files (x86)\Adobe\Reader 8.0\Reader\AcroRd32.exe" & Filename, 1 'Shell Filename End Sub -- Dave Peterson |
#4
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
Thanks Dave;
I added space after .exe to read ....exe " & filename, 1 and also inserted the if filename = false then exit sub end if Still getting R/T 53 I'm running XL2003 SP3 - Vista Home Premium (64-bit) "Dave Peterson" wrote: ps. After trying to get the filename from the user, you may want: if filename = false then exit sub end if Just in case they clicked the cancel button. JMay wrote: Any apparent errors from the below Macro? Sub LoadMyPdf() Dim Filt As String Dim Title As String Dim Filename As Variant 'Set up list of File Filters Filt = "PDF Files (*.pdf),*.pdf," Title = "Select a pdf file to open" Filename = Application.GetOpenFilename _ (Filefilter:=Filt, Title:=Title) Shell "C:\Program Files (x86)\Adobe\Reader 8.0\Reader\AcroRd32.exe" & Filename, 1 'Shell Filename End Sub -- Dave Peterson |
#5
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
try wrapping the filename with double quotes:
"...\Reader\AcroRd32.exe " & chr(34) & filename & chr(34), 1 As an experiment, you may want to copy the .pdf file to your C:\ folder. Rename this copy so that there are no spaces in the file (C:\a.pdf) and test that. JMay wrote: Thanks Dave; I added space after .exe to read ....exe " & filename, 1 and also inserted the if filename = false then exit sub end if Still getting R/T 53 I'm running XL2003 SP3 - Vista Home Premium (64-bit) "Dave Peterson" wrote: ps. After trying to get the filename from the user, you may want: if filename = false then exit sub end if Just in case they clicked the cancel button. JMay wrote: Any apparent errors from the below Macro? Sub LoadMyPdf() Dim Filt As String Dim Title As String Dim Filename As Variant 'Set up list of File Filters Filt = "PDF Files (*.pdf),*.pdf," Title = "Select a pdf file to open" Filename = Application.GetOpenFilename _ (Filefilter:=Filt, Title:=Title) Shell "C:\Program Files (x86)\Adobe\Reader 8.0\Reader\AcroRd32.exe" & Filename, 1 'Shell Filename End Sub -- Dave Peterson -- Dave Peterson |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Installation Error: File Not Found | New Users to Excel | |||
Installation Error: File not Found | Excel Discussion (Misc queries) | |||
Installation error, file not found | Excel Discussion (Misc queries) | |||
Error 1311. Source file not found | Excel Worksheet Functions | |||
Runtime Error '53' File Not Found? | Excel Discussion (Misc queries) |