<?xml version="1.0" encoding="utf-8" ?>
<?xml-stylesheet type="text/xsl" href="RSS_xslt_style.asp" version="1.0" ?>
<rss version="2.0" xmlns:WebWizForums="http://syndication.webwiz.co.uk/rss_namespace/">
 <channel>
  <title>Debenu Quick PDF Library - PDF SDK Community Forum : PDFLibrary.MergeDocument failed: 0</title>
  <link>http://www.quickpdf.org/forum/</link>
  <description><![CDATA[This is an XML content feed of; Debenu Quick PDF Library - PDF SDK Community Forum : I need help - I can help : PDFLibrary.MergeDocument failed: 0]]></description>
  <copyright>Copyright (c) 2006-2013 Web Wiz Forums - All Rights Reserved.</copyright>
  <pubDate>Sat, 04 Apr 2026 10:29:17 +0000</pubDate>
  <lastBuildDate>Thu, 03 Sep 2009 14:27:39 +0000</lastBuildDate>
  <docs>http://blogs.law.harvard.edu/tech/rss</docs>
  <generator>Web Wiz Forums 11.01</generator>
  <ttl>360</ttl>
  <WebWizForums:feedURL>www.quickpdf.org/forum/RSS_post_feed.asp?TID=1195</WebWizForums:feedURL>
  <image>
   <title><![CDATA[Debenu Quick PDF Library - PDF SDK Community Forum]]></title>
   <url>http://www.quickpdf.org/forum/forum_images/QPDF_Forum_Title.png</url>
   <link>http://www.quickpdf.org/forum/</link>
  </image>
  <item>
   <title><![CDATA[PDFLibrary.MergeDocument failed: 0 : This is how I&amp;#039;ve fixed the...]]></title>
   <link>http://www.quickpdf.org/forum/pdflibrarymergedocument-failed-0_topic1195_post5537.html#5537</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://www.quickpdf.org/forum/member_profile.asp?PF=1151">Yadutt</a><br /><strong>Subject:</strong> 1195<br /><strong>Posted:</strong> 03 Sep 09 at 2:27PM<br /><br />This is how I've fixed the problem and it works fine<br><br><br>&nbsp;&nbsp; If (stsOldFileName &lt;&gt; sFileName) Then<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; ' New file is being loaded<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; stsOldFileName = sFileName<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; <br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; ' Remove if any previous source file loaded document id<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; mobjPDFLib.RemoveDocument stlLoadedSourceDocId<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; <br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; ' Do we have success loading file in question ?<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; If mobjPDFLib.LoadFromFile(sFileName) = 0 Then<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; stsOldFileName = vbNullString<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Err.Raise vbObjectError, , "PDFLibrary.LoadFromFile failed: " &amp; mobjPDFLib.LastErrorCode &amp; _<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; " PageNo:" &amp; lPageNo &amp; " Filename: " &amp; sFileName<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; End If<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; <br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; ' Set focus on loaded new document<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; stlLoadedSourceDocId = mobjPDFLib.SelectedDocument<br>&nbsp;&nbsp; End If<br><br>&nbsp;&nbsp; 'Select the document<br>&nbsp;&nbsp; mobjPDFLib.SelectDocument stlLoadedSourceDocId<br><br>&nbsp;&nbsp; 'Extract the desire page<br>&nbsp;&nbsp; If mobjPDFLib.ExtractPageRanges(CStr(lPageNo)) = 0 Then<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Err.Raise vbObjectError, , "PDFLibrary.ExtracPageRanges failed: " &amp; mobjPDFLib.LastErrorCode &amp; _<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; " Filename: " &amp; sFileName &amp; " PageNo: " &amp; lPageNo<br>&nbsp;&nbsp; End If<br>&nbsp;&nbsp; <br>&nbsp;&nbsp; ' Set focus on the extracted desire page document<br>&nbsp;&nbsp; lSourcePDFID = mobjPDFLib.SelectedDocument<br>&nbsp;&nbsp; <br>&nbsp;&nbsp; ' Set focus on our main document<br>&nbsp;&nbsp; mobjPDFLib.SelectDocument mlCurrDocument<br>&nbsp;&nbsp; <br>&nbsp;&nbsp; ' Add desire number of pages. Default is 2. Please note that the extra pages will get removed<br>&nbsp;&nbsp; ' at the end of this method<br>&nbsp;&nbsp; mobjPDFLib.NewPages IIf(lPageNo - 1 = 0, 2, lPageNo - 1)<br><br>&nbsp;&nbsp; ' Merge source PDF<br>&nbsp;&nbsp; If mobjPDFLib.MergeDocument(lSourcePDFID) = 0 Then<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Err.Raise vbObjectError, , "PDFLibrary.MergeDocument failed: " &amp; mobjPDFLib.LastErrorCode &amp; _<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; " CurrentDocument:" &amp; mlCurrDocument &amp; " DocumentCount:" &amp; mobjPDFLib.DocumentCount &amp; _<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; " PageNo:" &amp; lPageNo &amp; " Filename:" &amp; sFileName<br>&nbsp;&nbsp; End If<br><br>&nbsp;&nbsp; ' Select the source page<br>&nbsp;&nbsp; mobjPDFLib.SelectPage mlCurrPage + lPageNo<br>&nbsp;&nbsp; <br>&nbsp;&nbsp; ' Store page size<br>&nbsp;&nbsp; lNewWidth = mobjPDFLib.GetPageBox(2, 2) '' PageWidth<br>&nbsp;&nbsp; lNewHeight = mobjPDFLib.GetPageBox(2, 3) '' PageHeight<br>&nbsp;&nbsp; <br>&nbsp;&nbsp; ' Select the work page<br>&nbsp;&nbsp; mobjPDFLib.SelectPage mlCurrPage<br>&nbsp;&nbsp; <br>&nbsp;&nbsp; ' Capture the page<br>&nbsp;&nbsp; lCaptureID = mobjPDFLib.CapturePageEx(mlCurrPage + lPageNo, 1)<br><br>&nbsp;&nbsp; If (lCaptureID = 0) Then<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Err.Raise vbObjectError, , "PDFLibrary.CapturePage failed: " &amp; mobjPDFLib.LastErrorCode<br>&nbsp;&nbsp; End If<br><br>&nbsp;&nbsp; mobjPDFLib.SelectPage mlCurrPage<br>&nbsp;&nbsp; <br>&nbsp;&nbsp; ' Resolve the coordinates<br>&nbsp;&nbsp; ResolveCoordinates lLeft, lTop, lWidth, lHeight, lHorAlign, _<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; lVertAlign, lNewLeft, lNewTop, lNewWidth, lNewHeight<br><br>&nbsp;&nbsp; ' Draw the captured page<br>&nbsp;&nbsp; If mobjPDFLib.DrawCapturedPage(lCaptureID, lNewLeft, lNewTop, lNewWidth, lNewHeight) = 0 Then<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Err.Raise vbObjectError, , "PDFLibrary.DrawCapturedPage failed: " &amp; mobjPDFLib.LastErrorCode<br>&nbsp;&nbsp; End If<br><br>&nbsp;&nbsp; ' Delete any extra pages<br>&nbsp;&nbsp; mobjPDFLib.DeletePages mlCurrPage + 1, mobjPDFLib.PageCount - mlCurrPage<br>&nbsp;&nbsp; mobjPDFLib.SelectPage mlCurrPage<br>]]>
   </description>
   <pubDate>Thu, 03 Sep 2009 14:27:39 +0000</pubDate>
   <guid isPermaLink="true">http://www.quickpdf.org/forum/pdflibrarymergedocument-failed-0_topic1195_post5537.html#5537</guid>
  </item> 
  <item>
   <title><![CDATA[PDFLibrary.MergeDocument failed: 0 :  Hi!Normally the current version...]]></title>
   <link>http://www.quickpdf.org/forum/pdflibrarymergedocument-failed-0_topic1195_post5534.html#5534</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://www.quickpdf.org/forum/member_profile.asp?PF=111">Ingo</a><br /><strong>Subject:</strong> 1195<br /><strong>Posted:</strong> 02 Sep 09 at 9:58AM<br /><br />Hi!<br><br>Normally the current version of QuickPDF shouldn't have problems with larger files.<br>With my posted code i've merged up to ten files and each file up to 70 mb (all together round about 220 mb). Sometimes it's not only the merge... also loading these big files costs time. <br>58 pages doesn't mean much... this can be 500 kb or 50 mb ;-)<br>Perhaps here's another reader who wants to share his experiences in this case with us?<br><br>Cheers, Ingo<br><br><span style="font-size:10px"><br /><br />Edited by Ingo - 02 Sep 09 at 10:01AM</span>]]>
   </description>
   <pubDate>Wed, 02 Sep 2009 09:58:36 +0000</pubDate>
   <guid isPermaLink="true">http://www.quickpdf.org/forum/pdflibrarymergedocument-failed-0_topic1195_post5534.html#5534</guid>
  </item> 
  <item>
   <title><![CDATA[PDFLibrary.MergeDocument failed: 0 : Hello Ingo,Thanks for your reply....]]></title>
   <link>http://www.quickpdf.org/forum/pdflibrarymergedocument-failed-0_topic1195_post5533.html#5533</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://www.quickpdf.org/forum/member_profile.asp?PF=1151">Yadutt</a><br /><strong>Subject:</strong> 1195<br /><strong>Posted:</strong> 02 Sep 09 at 9:47AM<br /><br />Hello Ingo,<br>Thanks for your reply. Much appreciated.<br><br>The problem I'm encountering is not that I'm having no success in merging document, but rather the number of documents.<br><br>The Quick PDF works well when there are few pages to merge, but seems to consistently fail when the number of pages increase. I've not been able to establish as to what point it fails ( i.e. number of pages when increment), I've 58 pages or files that I would like to merge into one document.<br><br>Thanks.<br>]]>
   </description>
   <pubDate>Wed, 02 Sep 2009 09:47:47 +0000</pubDate>
   <guid isPermaLink="true">http://www.quickpdf.org/forum/pdflibrarymergedocument-failed-0_topic1195_post5533.html#5533</guid>
  </item> 
  <item>
   <title><![CDATA[PDFLibrary.MergeDocument failed: 0 : Hi!  Here&amp;#039;s a sample that...]]></title>
   <link>http://www.quickpdf.org/forum/pdflibrarymergedocument-failed-0_topic1195_post5528.html#5528</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://www.quickpdf.org/forum/member_profile.asp?PF=111">Ingo</a><br /><strong>Subject:</strong> 1195<br /><strong>Posted:</strong> 01 Sep 09 at 6:43PM<br /><br />Hi!<DIV>&nbsp;</DIV><DIV>Here's a sample that works:</DIV><DIV>&nbsp;</DIV><DIV>Here is a sample about how to merge two files:<BR>&nbsp;&nbsp;&nbsp; QP := TQuickPDF712.Create;<BR>&nbsp;&nbsp;&nbsp; try<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; QP.UnlockKey('MyKey');<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; fa1 := FileGetAttr(Trim(starting_file));<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; FileSetAttr(Trim(starting_file), faArchive);<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; QP.LoadFromFile(starting_file);<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; QP.Unencrypt;<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; msd := QP.SelectedDocument;<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; fa2 := FileGetAttr(Trim(next_file));<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; FileSetAttr(Trim(next_file), faArchive);<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; QP.LoadFromFile(next_file);<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; QP.Unencrypt;<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; md0 := QP.SelectedDocument;<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; QP.SelectDocument(msd);<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; QP.MergeDocument(md0);<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; QP.SetInformation(0,'1.4');&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; //erforderliche PDF-Version<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; QP.SetInformation(5,'My Super App');&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; //Creator<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; QP.SetInformation(6,'The fantastic QuickPDF'); //Producer<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; QP.SaveToFile(The_new_file);<BR><BR>&nbsp;&nbsp;&nbsp; finally<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; QP.RemoveDocument(msd);<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; FileSetAttr(Trim(starting_file), fa1);<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; FileSetAttr(Trim(next_file), fa2);<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; QP.Free;<BR>&nbsp;&nbsp;&nbsp; end;<BR></DIV><DIV>BTW: I've copied it from one of my posts here from 6th of july this year. Why you don't use the search function above?</DIV><DIV>&nbsp;</DIV><DIV>Cheers and good luck,</DIV><DIV>Ingo</DIV><DIV>&nbsp;</DIV>]]>
   </description>
   <pubDate>Tue, 01 Sep 2009 18:43:37 +0000</pubDate>
   <guid isPermaLink="true">http://www.quickpdf.org/forum/pdflibrarymergedocument-failed-0_topic1195_post5528.html#5528</guid>
  </item> 
  <item>
   <title><![CDATA[PDFLibrary.MergeDocument failed: 0 : &amp;#039; Load source PDF If mobj...]]></title>
   <link>http://www.quickpdf.org/forum/pdflibrarymergedocument-failed-0_topic1195_post5526.html#5526</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://www.quickpdf.org/forum/member_profile.asp?PF=1151">Yadutt</a><br /><strong>Subject:</strong> 1195<br /><strong>Posted:</strong> 01 Sep 09 at 4:53PM<br /><br /><font size="2"><font face="Arial, Helvetica, sans-serif">&nbsp;&nbsp; ' Load source PDF<br>&nbsp;&nbsp; If mobjPDFLib.LoadFromFile(sFileName) = 0 Then<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Err.Raise vbObjectError, , "PDFLibrary.LoadFromFile failed: " &amp; mobjPDFLib.LastErrorCode &amp; _<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; " Filename: " &amp; sFileName<br>&nbsp;&nbsp; End If<br>&nbsp; &nbsp;<br>&nbsp;&nbsp; lSourcePDFID = mobjPDFLib.GetDocumentID(mobjPDFLib.DocumentCount)<br>&nbsp;&nbsp; mobjPDFLib.NewPage<br>&nbsp;&nbsp; mobjPDFLib.NewPage<br>&nbsp;&nbsp; <br>&nbsp;&nbsp; ' Select main document<br>&nbsp;&nbsp; mobjPDFLib.SelectDocument mlCurrDocument<br>&nbsp;&nbsp; <br>&nbsp;&nbsp; ' Merge source PDF<br>&nbsp;&nbsp; If mobjPDFLib.MergeDocument(lSourcePDFID) = 0 Then<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Err.Raise vbObjectError, , "PDFLibrary.MergeDocument failed: " &amp; mobjPDFLib.LastErrorCode &amp; _<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; " CurrentDocument:" &amp; mlCurrDocument &amp; _<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; " DocumentCount:" &amp; mobjPDFLib.DocumentCount &amp; _<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; " Filename:" &amp; sFileName<br>&nbsp;&nbsp; End If<br>&nbsp;&nbsp; <br>&nbsp;&nbsp; ' Select the source page<br>&nbsp;&nbsp; mobjPDFLib.SelectPage mlCurrPage + lPageNo<br>&nbsp;&nbsp; <br>&nbsp;&nbsp; ' Store page size<br>&nbsp;&nbsp; lNewWidth = mobjPDFLib.GetPageBox(2, 2) '' PageWidth<br>&nbsp;&nbsp; lNewHeight = mobjPDFLib.GetPageBox(2, 3) '' PageHeight<br>&nbsp;&nbsp; <br>&nbsp;&nbsp; ' Select the work page<br>&nbsp;&nbsp; mobjPDFLib.SelectPage mlCurrPage<br>&nbsp;&nbsp; <br>&nbsp;&nbsp; ' Capture the page<br>&nbsp;&nbsp; lCaptureID = mobjPDFLib.CapturePageEx(mlCurrPage + lPageNo, 1)<br>&nbsp;&nbsp; If lCaptureID = 0 Then<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Err.Raise vbObjectError, , "PDFLibrary.CapturePage failed: " &amp; mobjPDFLib.LastErrorCode<br>&nbsp;&nbsp; End If<br>&nbsp;&nbsp; <br>&nbsp;&nbsp; mobjPDFLib.SelectPage mlCurrPage<br>&nbsp;&nbsp; <br>&nbsp;&nbsp; ' Resolve the coordinates<br>&nbsp;&nbsp; ResolveCoordinates lLeft, lTop, lWidth, lHeight, lHorAlign, lVertAlign, _<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; lNewLeft, lNewTop, lNewWidth, lNewHeight<br>&nbsp;&nbsp; <br>&nbsp;&nbsp; ' Draw the captured page<br>&nbsp;&nbsp; If mobjPDFLib.DrawCapturedPage(lCaptureID, lNewLeft, lNewTop, lNewWidth, lNewHeight) = 0 Then<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Err.Raise vbObjectError, , "PDFLibrary.DrawCapturedPage failed: " &amp; mobjPDFLib.LastErrorCode<br>&nbsp;&nbsp; End If<br>&nbsp;&nbsp; <br>&nbsp;&nbsp; ' Delete any extra pages<br>&nbsp;&nbsp; mobjPDFLib.DeletePages mlCurrPage + 1, mobjPDFLib.PageCount - mlCurrPage<br>&nbsp;&nbsp; mobjPDFLib.SelectPage mlCurrPage<br>&nbsp;&nbsp; <br>&nbsp;&nbsp; ' Return new coordinates<br>&nbsp;&nbsp; lLeft = lNewLeft<br>&nbsp;&nbsp; lTop = lNewTop<br>&nbsp;&nbsp; lWidth = lNewWidth<br>&nbsp;&nbsp; lHeight = lNewHeight</font></font> <br>]]>
   </description>
   <pubDate>Tue, 01 Sep 2009 16:53:51 +0000</pubDate>
   <guid isPermaLink="true">http://www.quickpdf.org/forum/pdflibrarymergedocument-failed-0_topic1195_post5526.html#5526</guid>
  </item> 
  <item>
   <title><![CDATA[PDFLibrary.MergeDocument failed: 0 : Version : QuickPDF Library 7.14Number...]]></title>
   <link>http://www.quickpdf.org/forum/pdflibrarymergedocument-failed-0_topic1195_post5525.html#5525</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://www.quickpdf.org/forum/member_profile.asp?PF=1151">Yadutt</a><br /><strong>Subject:</strong> 1195<br /><strong>Posted:</strong> 01 Sep 09 at 4:51PM<br /><br />Version : QuickPDF Library 7.14<br>Number of Pages: 58<br>IDE Visual Basic 6<br><br>Thanks<br>]]>
   </description>
   <pubDate>Tue, 01 Sep 2009 16:51:36 +0000</pubDate>
   <guid isPermaLink="true">http://www.quickpdf.org/forum/pdflibrarymergedocument-failed-0_topic1195_post5525.html#5525</guid>
  </item> 
  <item>
   <title><![CDATA[PDFLibrary.MergeDocument failed: 0 : Hi!It&amp;#039;s always important...]]></title>
   <link>http://www.quickpdf.org/forum/pdflibrarymergedocument-failed-0_topic1195_post5524.html#5524</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://www.quickpdf.org/forum/member_profile.asp?PF=111">Ingo</a><br /><strong>Subject:</strong> 1195<br /><strong>Posted:</strong> 01 Sep 09 at 4:47PM<br /><br />Hi!<br><br>It's always important to know which version of the library you're using.<br>What is a "huge number" ;-)<br>Sorry but these error tells nothing.<br>Perhaps the pdf is protected - so merging isn't possible?<br>You can post a code snippet (please without your regkey ;-)<br><br>Cheers, Ingo<br><br>]]>
   </description>
   <pubDate>Tue, 01 Sep 2009 16:47:51 +0000</pubDate>
   <guid isPermaLink="true">http://www.quickpdf.org/forum/pdflibrarymergedocument-failed-0_topic1195_post5524.html#5524</guid>
  </item> 
  <item>
   <title><![CDATA[PDFLibrary.MergeDocument failed: 0 : Hello,Can someone please help...]]></title>
   <link>http://www.quickpdf.org/forum/pdflibrarymergedocument-failed-0_topic1195_post5522.html#5522</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://www.quickpdf.org/forum/member_profile.asp?PF=1151">Yadutt</a><br /><strong>Subject:</strong> 1195<br /><strong>Posted:</strong> 01 Sep 09 at 3:40PM<br /><br />Hello,<br>Can someone please help me. <br>I'm getting the error -2147221504 (80040000) when trying to merge document.&nbsp; It seems that this error is happing when there are huge number of pages being merged.<br><br>Your help would be much appreciated.<br><br>Thank you.<br>]]>
   </description>
   <pubDate>Tue, 01 Sep 2009 15:40:22 +0000</pubDate>
   <guid isPermaLink="true">http://www.quickpdf.org/forum/pdflibrarymergedocument-failed-0_topic1195_post5522.html#5522</guid>
  </item> 
 </channel>
</rss>