|
ちん様。何時も直ぐに回答を頂き感謝しております。
アドバイス通りに次のように記述して実行しましたがpdfファイルが開けませんでした。何処が間違っているのでしょうか。
Option Explicit
Private Declare Function ShellExecute Lib "shell32.dll" Alias "ShellExecuteA" (ByVal hwnd As Long, ByVal lpOperation As String, ByVal lpFile As String, ByVal lpParameters As String, ByVal lpDirectory As String, ByVal nShowCmd As Long) As Long
'関数
Sub OpenFile()
'関連付いたアプリケーションで立ち上げる
Dim Fname As String
Fname = ActiveWorkbook.Path & "\新聞5.pdf"
Call ShellExecute(0, "open", Fname, vbNullString, vbNullString, 1)
End Sub
|
|