<?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 : quick PDF Lite</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 : quick PDF Lite]]></description>
  <copyright>Copyright (c) 2006-2013 Web Wiz Forums - All Rights Reserved.</copyright>
  <pubDate>Wed, 29 Jul 2026 01:20:24 +0000</pubDate>
  <lastBuildDate>Thu, 21 Oct 2010 10:56:25 +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=1610</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[quick PDF Lite : Hi Doug,Quick PDF Library Lite...]]></title>
   <link>http://www.quickpdf.org/forum/quick-pdf-lite_topic1610_post7100.html#7100</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://www.quickpdf.org/forum/member_profile.asp?PF=1000">Rowan</a><br /><strong>Subject:</strong> 1610<br /><strong>Posted:</strong> 21 Oct 10 at 10:56AM<br /><br />Hi Doug,<div><br></div><div>Quick PDF Library Lite does not include any of the rendering functions required to display PDF files. This functionality is only available in the commercial version of the library.</div><div><br></div><div>In the version 7.21 reference guide a list of the functions supported in the Lite edition can be found on page 641 in the "Appendix C: Functions available in the Lite Edition" section.</div><div><br></div><div>Cheers,</div><div>- Rowan.</div>]]>
   </description>
   <pubDate>Thu, 21 Oct 2010 10:56:25 +0000</pubDate>
   <guid isPermaLink="true">http://www.quickpdf.org/forum/quick-pdf-lite_topic1610_post7100.html#7100</guid>
  </item> 
  <item>
   <title><![CDATA[quick PDF Lite : I&amp;#039;m just starting with this...]]></title>
   <link>http://www.quickpdf.org/forum/quick-pdf-lite_topic1610_post7090.html#7090</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://www.quickpdf.org/forum/member_profile.asp?PF=1436">dmtulsa</a><br /><strong>Subject:</strong> 1610<br /><strong>Posted:</strong> 20 Oct 10 at 3:34PM<br /><br />I'm just starting with this so please go easy on me. I'm using the lite version 7.19 and I did register it. The code is in powerbasic ver 9.x. My question is can I open a PDF file and display it with this version? I see nothing in the reference guide about rendering.<div><br></div><div>LoadFromFile returns a 0 so maybe there are some steps I'm missing.<br><div><br></div><div><div>#INCLUDE Once "..\modules\QuickPDFLite0719.inc"</div><div>Global QPL As QuickPDFLite0719IPDFLibrary &nbsp;'line 41 of include file</div></div></div><div><br></div><div>''''Form load&nbsp;</div><div><div>Function FORM1_WM_CREATE ( _</div><div>&nbsp;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; hWndForm As Dword, _ &nbsp; &nbsp; &nbsp;' handle of Form</div><div>&nbsp;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; ByVal UserData As Long _ &nbsp;' optional user defined Long value</div><div>&nbsp;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; ) As Long</div><div>&nbsp;Local Result As Long</div><div><br></div><div>' Get a reference and set the properties</div><div>QPL = newcom $PROGID_QuickPDFLite0719PDFLibrary 'Line 16 of include file</div><div><br></div><div>End Function</div></div><div><br></div><div><br></div><div><br></div><div>''''button click</div><div><div>Function FORM1_COMMAND1_BN_CLICKED ( _</div><div>&nbsp;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; ControlIndex &nbsp; &nbsp; As Long, &nbsp;_ &nbsp;' index in Control Array</div><div>&nbsp;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; hWndForm &nbsp; &nbsp; &nbsp; &nbsp; As Dword, _ &nbsp;' handle of Form</div><div>&nbsp;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; hWndControl &nbsp; &nbsp; &nbsp;As Dword, _ &nbsp;' handle of Control</div><div>&nbsp;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; idButtonControl &nbsp;As Long &nbsp; _ &nbsp;' identifier of button</div><div>&nbsp;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; ) As Long</div><div><br></div><div>Local DocID As Long</div><div>Local Result As Long</div><div>Local imgFile As String</div><div>Local ImageID As Long</div><div>Local MyPDF As String</div><div>Local FontID As Long</div><div>Local FontMain As Long</div><div>MyPDF = "c:\Projects\QuickPDFLite\release\mypdf.pdf"</div><div>If IsFalse(IsObject(QPL)) Then</div><div>&nbsp;&nbsp; MsgBox "Unable to create an object refrence."</div><div>&nbsp;&nbsp; Exit Function</div><div>End If</div><div>&nbsp;&nbsp; &nbsp; &nbsp; &nbsp;&nbsp;</div><div>result = QPL.loadFromFile(mypdf)</div><div>'result = QPL.DAOpenFile("c:\Projects\QuickPDFLite\release\AD8302.pdf")</div><div>MsgBox Str$(result)</div><div>End Function</div></div><div><br></div><div><br></div><div><br></div><div><br></div><div><br></div><div>Maybe this can't even be done in the lite version but I doubt it. What I need to do is open a pdf and display it</div><div><br></div><div>Thank you</div><div>Doug</div><div><br></div><div><br></div>]]>
   </description>
   <pubDate>Wed, 20 Oct 2010 15:34:05 +0000</pubDate>
   <guid isPermaLink="true">http://www.quickpdf.org/forum/quick-pdf-lite_topic1610_post7090.html#7090</guid>
  </item> 
 </channel>
</rss>