Deepak Excel Ninja Apr 16, 2014 #4 Check this, Different approach are described here!! http://www.mrexcel.com/forum/excel-...pdf-file-excel-visual-basic-applications.html
Check this, Different approach are described here!! http://www.mrexcel.com/forum/excel-...pdf-file-excel-visual-basic-applications.html
Marc L Excel Ninja Apr 17, 2014 #5 Hi ! Tip to open any kind of file with its default application : Code: Sub DocOpen(PathFileExt$) On Error Resume Next CreateObject("WScript.Shell").Run _ CreateObject("Scripting.FileSystemObject").GetFile(PathFileExt).ShortPath End Sub Enjoy and like it !
Hi ! Tip to open any kind of file with its default application : Code: Sub DocOpen(PathFileExt$) On Error Resume Next CreateObject("WScript.Shell").Run _ CreateObject("Scripting.FileSystemObject").GetFile(PathFileExt).ShortPath End Sub Enjoy and like it !