<?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 : VB6 - Print PDF &#146;&#111;n the fly ....</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 : Sample Code : VB6 - Print PDF &#146;&#111;n the fly ....]]></description>
  <copyright>Copyright (c) 2006-2013 Web Wiz Forums - All Rights Reserved.</copyright>
  <pubDate>Mon, 11 May 2026 23:20:01 +0000</pubDate>
  <lastBuildDate>Tue, 24 Oct 2006 12:05:01 +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=232</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[VB6 - Print PDF &#146;&#111;n the fly .... :   sams177 wrote:Hi !!   Nice...]]></title>
   <link>http://www.quickpdf.org/forum/vb6-print-pdf-on-the-fly_topic232_post2379.html#2379</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://www.quickpdf.org/forum/member_profile.asp?PF=187">Devil</a><br /><strong>Subject:</strong> 232<br /><strong>Posted:</strong> 24 Oct 06 at 12:05PM<br /><br /><table width="99%"><tr><td class="BBquote"><img src="forum_images/quote_box.png" title="Originally posted by sams177" alt="Originally posted by sams177" style="vertical-align: text-bottom;" /> <strong>sams177 wrote:</strong><br /><br /><p>Hi !!</p><br /><p>  Nice coding..  </p><br /><p>  But I want to diaplay the page before it prints. And ask the user, whether he want to print the page or not.</p><br /><p>  Plz post reply to this.</p><br /><p> </p><br /><p> </p></td></tr></table><br /><br />All you you need for a "printPreview"<br />....<br /> Call QP.NeedImagePreview(1)<br /> Call QP.RenderDocumentToFile(72, 1, 1, 1, App.Path & "\Vorschau.jpg")<br />....<br /><br />regards<br />Devil<br /><br /><br />]]>
   </description>
   <pubDate>Tue, 24 Oct 2006 12:05:01 +0000</pubDate>
   <guid isPermaLink="true">http://www.quickpdf.org/forum/vb6-print-pdf-on-the-fly_topic232_post2379.html#2379</guid>
  </item> 
  <item>
   <title><![CDATA[VB6 - Print PDF &#146;&#111;n the fly .... : Hi !!  Nice coding..   But I...]]></title>
   <link>http://www.quickpdf.org/forum/vb6-print-pdf-on-the-fly_topic232_post2088.html#2088</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://www.quickpdf.org/forum/member_profile.asp?PF=417">sams177</a><br /><strong>Subject:</strong> 232<br /><strong>Posted:</strong> 21 Jul 06 at 5:29AM<br /><br /><P>Hi !!</P><P>&nbsp; Nice coding..&nbsp; </P><P>&nbsp; But I want to diaplay the page before it&nbsp;prints. And ask the user, whether he want to print the page or not.</P><P>&nbsp; Plz post reply to this.</P><P>&nbsp;</P><P>&nbsp;</P>]]>
   </description>
   <pubDate>Fri, 21 Jul 2006 05:29:28 +0000</pubDate>
   <guid isPermaLink="true">http://www.quickpdf.org/forum/vb6-print-pdf-on-the-fly_topic232_post2088.html#2088</guid>
  </item> 
  <item>
   <title><![CDATA[VB6 - Print PDF &#146;&#111;n the fly .... : Hi,  for all they search for a...]]></title>
   <link>http://www.quickpdf.org/forum/vb6-print-pdf-on-the-fly_topic232_post814.html#814</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://www.quickpdf.org/forum/member_profile.asp?PF=187">Devil</a><br /><strong>Subject:</strong> 232<br /><strong>Posted:</strong> 30 Dec 05 at 12:46PM<br /><br />Hi,<br /><br />for all they search for a sample to print any PDF Files on the fly, ....<br /><br />Sample written for Visual Basic 6:<br />______________________________________________________<br />Private Sub Print_on_the_fly_Click()<br /><br />' Sub to prints PDF Files on the fly without saving<br /><br />Dim QP As iSed.QuickPDF<br /><br />Set QP = CreateObject("iSED.QuickPDF")<br /><br />' GDIPlus.dll needed that the images are printable 'on the fly<br />Call QP.SetGDIPlusFileName(App.Path & "\GDIPLUS.DLL")<br /><br />Call QP.UnlockKey("secret")<br />Call QP.LoadFromFile(App.Path & "\Formular.pdf")<br /><br /><br />If QP.Encrypted = 1 Then<br /> QP.SetPassword ("secret")<br /> QP.Unencrypt<br />End If<br />Call QP.SetNeedAppearances(1)<br /><br />Call QP.SetFormFieldValueByTitle("Datum", date)<br />Call QP.SetFormFieldValueByTitle("Firma", Firma.value)<br />Call QP.SetFormFieldValueByTitle("Name", Name.value)<br />Call QP.SetFormFieldValueByTitle("Strasse", Strasse.value)<br />Call QP.SetFormFieldValueByTitle("Ort",PLZ.value & " " & Ort.value)<br />Call QP.SetFormFieldValueByTitle("Tel", Telfon.value)<br /><br />' UpdateApperanceStream needed for printable 'on the fly<br />For pdfFields = 1 To QP.FormFieldCount<br />  Call QP.UpdateAppearanceStream(pdfFields)<br />Next pdfFields<br /><br />Call QP.PrintDocument(QP.GetDefaultPrinterName, 1, 1, QP.PrintOptions(0, 0, "Formular"))<br /><br />Set QP = Nothing<br />End Sub<br />_______________________________________________________<br /><br />best regards<br />Devil]]>
   </description>
   <pubDate>Fri, 30 Dec 2005 12:46:55 +0000</pubDate>
   <guid isPermaLink="true">http://www.quickpdf.org/forum/vb6-print-pdf-on-the-fly_topic232_post814.html#814</guid>
  </item> 
 </channel>
</rss>