R Ron C Dec 3, 2003 #1 Does anyone have a recommendation on how to open and view a Word file from with Excel (VBA)?
C Chip Pearson Dec 3, 2003 #2 Ron, Try something like the following: Dim WordApp As Object Set WordApp = CreateObject("Word.Application") WordApp.documents.Open "C:\filename.doc" WordApp.Visible = True -- Cordially, Chip Pearson Microsoft MVP - Excel Pearson Software Consulting, LLC www.cpearson.com
Ron, Try something like the following: Dim WordApp As Object Set WordApp = CreateObject("Word.Application") WordApp.documents.Open "C:\filename.doc" WordApp.Visible = True -- Cordially, Chip Pearson Microsoft MVP - Excel Pearson Software Consulting, LLC www.cpearson.com