Home |
Search |
Today's Posts |
|
#1
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]() I am creating a .pdf file from excel file The code works fine for smal number of files ,but for 5,000-6,000 files the VBA code fails givin error 1004 "Application-defined or object-defined error" Here is the code snippet 'runs macro in xls file Call runMacro() 'create postscript file (1) Application.ActiveWindow.SelectedSheets.PrintOu ActivePrinter:=printer, PrintToFile:=True, PrToFileName:=PSFileName Dim PDFFileName AS String 'get pdf file name (2) PDFFileName = publishInfo.publishReportPath & Filename Dim PdfDistillerObj As Object Set PdfDistillerObj = CreateObject("PdfDistiller.PdfDistiller.1") ' create the pdf report from the ps report. PdfDistillerObj.FileToPDF strMenuFilePS, PDFFileName , "" Set PdfDistillerObj = Nothing If I run it in the debug mode The code completes (1) and creates .ps file but before reaching (2 i.e. before creating the PDF filename it fails giving 1004 error I am guessing that it could be memory issue as it fails only for larg number of files, but not sure. Any help appreciated. Thanks in advnace Meghan chemburka ----------------------------------------------------------------------- Posted via http://www.mcse.m ----------------------------------------------------------------------- View this thread: http://www.mcse.ms/message353955.htm |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Run-time error '50290': Application-defined or object-defined erro | Excel Discussion (Misc queries) | |||
Application-defined or object-defined error Please Help | Excel Discussion (Misc queries) | |||
"Run Time Error 1004 Application Defined or Object Defined Error." | Excel Programming | |||
Application-defined or object-defined error | Excel Programming | |||
Runtime Error 1004 -- Application Defined or Object Defined Error | Excel Programming |