View Single Post
 
Old 02-13-2014, 01:33 PM
CIF CIF is offline Windows 7 32bit Office 2007
Novice
 
Join Date: Feb 2014
Posts: 7
CIF is on a distinguished road
Default Run Time Error 4248 when opening Word Doc from Excel

I haved a pricing worksheet that our workgroup uses. It opens a Word Document from and Excel Worksheet and merges info from Excel to Word. It worked fine while everyone was using Office 2007. The users that have Office 2010 installed on their computers are getting a Run Time Error 4248 when they attempt to create the Word document from the Word Template. Here is a piece of the VBA code in the Excel worksheet.

Code:
Dim wrdApp As Word.Application
Set wrdApp = CreateObject("Word.Application")
Application.ScreenUpdating = False
With wrdApp
.Documents.Add Template:="G:\ABP\ArchSpec\A-Operations\Group Templates\Quote Templates\MWLinearQuote.dotx"
Any help would be very much appreciated.
Reply With Quote