Hi friends,
i have a textbox where i have a path of the pdf file. now after pressing a cummand button i want this file to be opened.
my code is as follows..
Private Sub wazopen_Click()
Dim myfol As String
Dim myfln As String
Dim myfpath As String
myfol = "C:\Dokumente und Einstellungen\singava\Eigene Dateien\Eigene Bilder\T_online Rechnungen\"
myfln = Me.txtwaz
myfpath = myfol & myfln
Application.FollowHyperlink myfpath
End Sub
but i am getting an error here..permission denied...
is there any method where i can open this pdf file taking the path from a textbox.
Thanks friends