<?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 : Adobe 7 issues</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 : Adobe 7 issues]]></description>
  <copyright>Copyright (c) 2006-2013 Web Wiz Forums - All Rights Reserved.</copyright>
  <pubDate>Mon, 27 Apr 2026 12:20:10 +0000</pubDate>
  <lastBuildDate>Mon, 07 Nov 2005 03:40:22 +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=163</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[Adobe 7 issues : @FKirch and anybody who&amp;#039;s...]]></title>
   <link>http://www.quickpdf.org/forum/adobe-7-issues_topic163_post468.html#468</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://www.quickpdf.org/forum/member_profile.asp?PF=138">ue14</a><br /><strong>Subject:</strong> 163<br /><strong>Posted:</strong> 07 Nov 05 at 3:40AM<br /><br />@FKirch and anybody who's interested:<br /><br />Some hints for those still trying to use the reader OCX with Delphi:<br /><br />Registering the OCX control is pretty straight forward ... just do as with other registered OCX controls; keep in mind that the reader must be installed properly (I made the experience that - if the reader chrashes - the OCX control simply will not work. Interestingly if you start the reader again it attempts automatic repair and everything's fine again.<br /><br />Use of the control from the code point of view is simple (some sample code below); Delphi (btw I'm using Delphi 5 & 6) generates the interface describing all methods and properties (AcroPDFLib_TLB.pas); you might wanna take a look at it. Just drop the control on a form and load a pdf into it. First drawback here: the control handles painting and refreshing very, very, very badly so it would be a good idea to create the control at runtime.<br /><br />Some more disturbing behaviours:<br /><br />After loading the control comes up with standard settings (e.g. toolbars visible, zoom 100% etc. etc.) depending on the actual reader options. Also the display mode seems to be undefined and MUST be set in order to get any preview. Consequently your code has to take care of the appearance of the OCX everytime you load a pdf into it - not so nice. This also applies if you reload the same pdf. <br /><br />You will not be able to get rid of the pages, bookmarks, etc. panels on the left; at least the divider bar will always be there.<br /><br />There is no good way to "close" a pdfor to remove it from the control/memory. Loading a non-existing pdf into the control works but memory is handled rather badly and the control simply does not refresh - ergo again some coding to do. Finally - at least in my testing environment - the control does not adjust to size changes of the parent control. Again this requires some extra coding.<br /><br />To wrap things up: The OCX reader control work but displays some nasty behaviour. Also the reader must be installed on the target system which complicates distribution of any application. These led me to the conclusion that the OCX is fine for a testing/debugging environment but actually not advisable in a productive environment. See also the very nice article of Michel_K17 of 'Superfast rendering' in the 'General Discussion' section.<br /><br />Hope this was of help - some sample code coming up now. Happy to answer questions whenever possible.<br /><br />Cheers<br />Udo<br /><br />procedure TForm1.Button1Click(Sender: TObject);<br />begin<br />  //check if file is already loaded<br />  if AcroPDF1.Src&lt;&gt;'C:\test.pdf' then<br />  begin<br /><br />&nbsp;&nbsp;&nbsp;&nbsp;// hide reader toolbar and scrollbars<br />&nbsp;&nbsp;&nbsp;&nbsp;// show first page in full-page mode<br /><br />&nbsp;&nbsp;&nbsp;&nbsp;AcroPDF1.Visible:=false;<br />&nbsp;&nbsp;&nbsp;&nbsp;AcroPDF1.LoadFile('C:\test.pdf');<br />&nbsp;&nbsp;&nbsp;&nbsp;AcroPDF1.setShowToolbar(false);<br />&nbsp;&nbsp;&nbsp;&nbsp;AcroPDF1.setShowScrollbars(false);<br />&nbsp;&nbsp;&nbsp;&nbsp;AcroPDF1.setLayoutMode('SinglePage');<br />&nbsp;&nbsp;&nbsp;&nbsp;AcroPDF1.setPageMode('none');<br />&nbsp;&nbsp;&nbsp;&nbsp;AcroPDF1.setView('Fit');<br />&nbsp;&nbsp;&nbsp;&nbsp;AcroPDF1.gotoFirstPage;<br />&nbsp;&nbsp;&nbsp;&nbsp;AcroPDF1.Visible:=true;<br />  end;<br />end;<br />]]>
   </description>
   <pubDate>Mon, 07 Nov 2005 03:40:22 +0000</pubDate>
   <guid isPermaLink="true">http://www.quickpdf.org/forum/adobe-7-issues_topic163_post468.html#468</guid>
  </item> 
  <item>
   <title><![CDATA[Adobe 7 issues : If you use Twebbrowser you can...]]></title>
   <link>http://www.quickpdf.org/forum/adobe-7-issues_topic163_post452.html#452</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://www.quickpdf.org/forum/member_profile.asp?PF=112">oldelphi</a><br /><strong>Subject:</strong> 163<br /><strong>Posted:</strong> 03 Nov 05 at 2:29PM<br /><br /><P>If you use Twebbrowser you can also load different filetypes in the browser than PDF and HTML.</P><P>If you download DWF viewer from Autodesk you can watch DWF drawing files.</P><P>SVG files made by Adobe or exported from MS viso can be used for diagrams for customer that not have Visio.</P><P>This is some filetypes to use in TWEBBROWSER</P><P>Have a nice delphi trayout of the browser.</P><P>Remenber to load a file localy I use this code :</P><P>&nbsp; WB.Navigate(WideString(loadfilepdf), Flags, Flags, Flags, Flags);</P><P>or</P><P>function file_to_html(str1 : string):string;<BR>var str2,str3,str4,str5 : string;<BR>i,bb : integer;<BR>begin<BR>bb:=length(str1);<BR>str2:=str1&#091;1&#093;;<BR>str3:='|';<BR>str4:='file:///';<BR>str5:='';<BR>for i:=0 to bb do<BR>begin<BR>if i &gt; 2 then<BR>str5:=str5+str1<em>;<BR>end;<BR>result:=str4+str2+str3+str5;<BR>end;</P><P>or</P><P>Wb.Navigate('D:\d\dh4\test\labels\test1.pdf');</P><P>regards </P><P>oldelphi</P><P>&nbsp;</P><P>&nbsp;</P><P>&nbsp;</P><P>&nbsp;</P><P>&nbsp;</P>]]>
   </description>
   <pubDate>Thu, 03 Nov 2005 14:29:43 +0000</pubDate>
   <guid isPermaLink="true">http://www.quickpdf.org/forum/adobe-7-issues_topic163_post452.html#452</guid>
  </item> 
  <item>
   <title><![CDATA[Adobe 7 issues : Hi Dsola!  Wow! Great idea......]]></title>
   <link>http://www.quickpdf.org/forum/adobe-7-issues_topic163_post450.html#450</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://www.quickpdf.org/forum/member_profile.asp?PF=111">Ingo</a><br /><strong>Subject:</strong> 163<br /><strong>Posted:</strong> 03 Nov 05 at 9:57AM<br /><br />Hi Dsola!<br /><br />Wow! Great idea... and so easy.<br />]]>
   </description>
   <pubDate>Thu, 03 Nov 2005 09:57:47 +0000</pubDate>
   <guid isPermaLink="true">http://www.quickpdf.org/forum/adobe-7-issues_topic163_post450.html#450</guid>
  </item> 
  <item>
   <title><![CDATA[Adobe 7 issues : Hi, We are  using Delphi and had...]]></title>
   <link>http://www.quickpdf.org/forum/adobe-7-issues_topic163_post449.html#449</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://www.quickpdf.org/forum/member_profile.asp?PF=107">dsola</a><br /><strong>Subject:</strong> 163<br /><strong>Posted:</strong> 03 Nov 05 at 7:53AM<br /><br />Hi,<br />We are  using Delphi and had the same problem.<br />Now we create TWebBrowser and send PDF to it.<br /><br />Maybe it's slower but You have no problem with Reader versions.<br /><br />]]>
   </description>
   <pubDate>Thu, 03 Nov 2005 07:53:30 +0000</pubDate>
   <guid isPermaLink="true">http://www.quickpdf.org/forum/adobe-7-issues_topic163_post449.html#449</guid>
  </item> 
  <item>
   <title><![CDATA[Adobe 7 issues : Hi! Is there an easy (and safe)...]]></title>
   <link>http://www.quickpdf.org/forum/adobe-7-issues_topic163_post447.html#447</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://www.quickpdf.org/forum/member_profile.asp?PF=111">Ingo</a><br /><strong>Subject:</strong> 163<br /><strong>Posted:</strong> 03 Nov 05 at 2:34AM<br /><br />Hi!<br />Is there an easy (and safe) methode to detect the local actual used reader-version? The described com-object is only for version 7 - there're still many version below 7 out there...<br />]]>
   </description>
   <pubDate>Thu, 03 Nov 2005 02:34:20 +0000</pubDate>
   <guid isPermaLink="true">http://www.quickpdf.org/forum/adobe-7-issues_topic163_post447.html#447</guid>
  </item> 
  <item>
   <title><![CDATA[Adobe 7 issues : Sorry, don&amp;#039;t know Delphi....]]></title>
   <link>http://www.quickpdf.org/forum/adobe-7-issues_topic163_post441.html#441</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://www.quickpdf.org/forum/member_profile.asp?PF=115">chicks</a><br /><strong>Subject:</strong> 163<br /><strong>Posted:</strong> 02 Nov 05 at 3:27PM<br /><br /><P>Sorry, don't know Delphi.&nbsp; This might help:</P><P><A href="http://www.devblog.de/index.php/archives/2004/12/29/15/" target="_blank">http://www.devblog.de/index.php/archives/2004/12/29/15/</A></P><P>This may provide additional details:</P><P><A href="http://www.powerbasic.com/support/forums/Forum7/HTML/002532.html" target="_blank">http://www.powerbasic.com/support/forums/Forum7/HTML/002532.html</A></P><P>&nbsp;</P>]]>
   </description>
   <pubDate>Wed, 02 Nov 2005 15:27:30 +0000</pubDate>
   <guid isPermaLink="true">http://www.quickpdf.org/forum/adobe-7-issues_topic163_post441.html#441</guid>
  </item> 
  <item>
   <title><![CDATA[Adobe 7 issues : @chicks @ingo: Both of you mention...]]></title>
   <link>http://www.quickpdf.org/forum/adobe-7-issues_topic163_post440.html#440</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://www.quickpdf.org/forum/member_profile.asp?PF=114">FKirch</a><br /><strong>Subject:</strong> 163<br /><strong>Posted:</strong> 02 Nov 05 at 12:38PM<br /><br />@chicks @ingo:<br />Both of you mention the well documented Adobe IACReference.PDF<br />Does anyone of you have a delphi example of how to access Adobe Reader with this COM interface?]]>
   </description>
   <pubDate>Wed, 02 Nov 2005 12:38:52 +0000</pubDate>
   <guid isPermaLink="true">http://www.quickpdf.org/forum/adobe-7-issues_topic163_post440.html#440</guid>
  </item> 
  <item>
   <title><![CDATA[Adobe 7 issues : Lots of developers assumed that...]]></title>
   <link>http://www.quickpdf.org/forum/adobe-7-issues_topic163_post436.html#436</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://www.quickpdf.org/forum/member_profile.asp?PF=115">chicks</a><br /><strong>Subject:</strong> 163<br /><strong>Posted:</strong> 02 Nov 05 at 12:37AM<br /><br /><P>Lots of developers assumed that "pdf.ocx" was there for them to use.&nbsp; In fact, Adobe never published documentation for it, and ONLY intended it to be used by browsers.</P><P>As of Reader 7, Adobe now includes a fully documented COM object that can be used to display and print PDFs.&nbsp; It's documented in Adobe's IACReference.PDF.</P><P>&nbsp;</P>]]>
   </description>
   <pubDate>Wed, 02 Nov 2005 00:37:02 +0000</pubDate>
   <guid isPermaLink="true">http://www.quickpdf.org/forum/adobe-7-issues_topic163_post436.html#436</guid>
  </item> 
  <item>
   <title><![CDATA[Adobe 7 issues : Hi Corky! I can remind me that...]]></title>
   <link>http://www.quickpdf.org/forum/adobe-7-issues_topic163_post435.html#435</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://www.quickpdf.org/forum/member_profile.asp?PF=111">Ingo</a><br /><strong>Subject:</strong> 163<br /><strong>Posted:</strong> 01 Nov 05 at 10:52PM<br /><br />Hi Corky!<br />I can remind me that i've read already something about it. The new version 7 don't use the pdf.ocx - now it's the AcroRd32.dll. How to access/use this dll is well explained/documentated on the adobe-website.<br />I can imagine that it's a problem when the version 7 is installed/registered and you want to use the pdf.ocx.<br />You can detect if version 7 is installed or not. If it's version 7 use code for the new dll - if not use your pdf.ocx.<br />  ]]>
   </description>
   <pubDate>Tue, 01 Nov 2005 22:52:41 +0000</pubDate>
   <guid isPermaLink="true">http://www.quickpdf.org/forum/adobe-7-issues_topic163_post435.html#435</guid>
  </item> 
  <item>
   <title><![CDATA[Adobe 7 issues : In our VB Application, we used...]]></title>
   <link>http://www.quickpdf.org/forum/adobe-7-issues_topic163_post433.html#433</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://www.quickpdf.org/forum/member_profile.asp?PF=134">CorkyC</a><br /><strong>Subject:</strong> 163<br /><strong>Posted:</strong> 01 Nov 05 at 10:35PM<br /><br /><P><SPAN style="FONT-SIZE: 3.5pt; FONT-FAMILY: Verdana"><FONT size=3>&nbsp;In our VB Application, we used "ised.dll" along with "pdf.ocx".&nbsp; If the users has Adobe 7 installed,&nbsp;they get an error on the PDF.ocx file.&nbsp; The pdf.ocx file came with Adobe 6, and did not come with Adobe 7 professional.<?xml:namespace prefix = o ns = "urn:schemas-microsoft-com:office:office" /><o:p></o:p></FONT></SPAN></P><P><SPAN style="FONT-SIZE: 3.5pt; FONT-FAMILY: Verdana"><FONT size=3>So, I new question is do I need an upgraded version of pdf.ocx for Adobe 7, or some other equivalent file from Adobe 7?<o:p></o:p></FONT></SPAN></P><P><SPAN style="FONT-SIZE: 3.5pt; FONT-FAMILY: Verdana"><FONT size=3>Thanks for any help you can provide.<o:p></o:p></FONT></SPAN></P><P><SPAN style="FONT-SIZE: 3.5pt; FONT-FAMILY: Verdana"><FONT size=3>Corky Cootes</FONT></SPAN></P><P><SPAN style="FONT-SIZE: 3.5pt; FONT-FAMILY: Verdana"><FONT size=3>Austin, TX<o:p></o:p></FONT></SPAN></P>]]>
   </description>
   <pubDate>Tue, 01 Nov 2005 22:35:49 +0000</pubDate>
   <guid isPermaLink="true">http://www.quickpdf.org/forum/adobe-7-issues_topic163_post433.html#433</guid>
  </item> 
 </channel>
</rss>