S sampath Member Jul 7, 2015 #1 Hello, Need to open any MS application / PDF using macro coding. Please share the coding. Regards, Sampath.S
Hello, Need to open any MS application / PDF using macro coding. Please share the coding. Regards, Sampath.S
Deepak Excel Ninja Jul 7, 2015 #2 Pls be specific about the query!! http://what-when-how.com/excel-vba/interacting-with-other-office-applications-via-excel-vba/
Pls be specific about the query!! http://what-when-how.com/excel-vba/interacting-with-other-office-applications-via-excel-vba/
S sampath Member Jul 8, 2015 #3 Hello Deepak, Need macro coding for open MS Word (open application and not for particular word file)and close it after 15 seconds. Please provide the coding. Regards, Sampath.S
Hello Deepak, Need macro coding for open MS Word (open application and not for particular word file)and close it after 15 seconds. Please provide the coding. Regards, Sampath.S
Deepak Excel Ninja Jul 8, 2015 #6 http://what-when-how.com/excel-vba/interacting-with-other-office-applications-via-excel-vba/ or Try this... Code: Sub test() Dim t As Double t = Timer With CreateObject("Word.Application") With CreateObject("Word.Document") .Windows(1).Visible = 1 .Content = "Mytest" End With Do While Timer - t < 15: DoEvents: Loop .Quit End With End Sub
http://what-when-how.com/excel-vba/interacting-with-other-office-applications-via-excel-vba/ or Try this... Code: Sub test() Dim t As Double t = Timer With CreateObject("Word.Application") With CreateObject("Word.Document") .Windows(1).Visible = 1 .Content = "Mytest" End With Do While Timer - t < 15: DoEvents: Loop .Quit End With End Sub