Home |
Search |
Today's Posts |
|
#1
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
How can I open a word document from within excel with VBA and minimize the
document. |
#2
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Excel can't open Word documents, although the reverse is not the
case. You can automate Excel to open Word, and then have Word open a document and minimize itself. E.g., Dim WDApp As Object Dim WordDoc As Object Set WDApp = CreateObject("Word.Application") WDApp.Documents.Open Filename:="H:\Test.doc" WDApp.WindowState = wdWindowStateMinimize -- Cordially, Chip Pearson Microsoft MVP - Excel Pearson Software Consulting, LLC www.cpearson.com "Luc" wrote in message ... How can I open a word document from within excel with VBA and minimize the document. |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
That I do I cannot open to archives in Word nor Excel? | New Users to Excel | |||
Excel Hyperlink doesn't open Word doc the same way as Word does | Excel Discussion (Misc queries) | |||
How to open a word doc while in Excel | Excel Discussion (Misc queries) | |||
Graph Excel Selection, Open Word File, Embed Graph Into Word | Excel Programming | |||
In Excel VBA, open .txt with Word? | Excel Programming |