<?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 : Fill out a form with vba</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 : Fill out a form with vba]]></description>
  <copyright>Copyright (c) 2006-2013 Web Wiz Forums - All Rights Reserved.</copyright>
  <pubDate>Thu, 30 Apr 2026 05:38:55 +0000</pubDate>
  <lastBuildDate>Tue, 12 Feb 2019 16:55:49 +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=3675</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[Fill out a form with vba : so there&amp;#039;s only less you...]]></title>
   <link>http://www.quickpdf.org/forum/fill-out-a-form-with-vba_topic3675_post14635.html#14635</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://www.quickpdf.org/forum/member_profile.asp?PF=111">Ingo</a><br /><strong>Subject:</strong> 3675<br /><strong>Posted:</strong> 12 Feb 19 at 4:55PM<br /><br />so there's only less you can do.<br>Check out which functionalities i've described are in the lite-version and then play a little bit...<br><br>Or you do it the other way and download the normal library and asking for an evaluation key limited for 30 days from here:<br>https://www.debenu.com/products/development/debenu-pdf-library/trial/<br><br><br><span style="font-size:10px"><br /><br />Edited by Ingo - 12 Feb 19 at 4:58PM</span>]]>
   </description>
   <pubDate>Tue, 12 Feb 2019 16:55:49 +0000</pubDate>
   <guid isPermaLink="true">http://www.quickpdf.org/forum/fill-out-a-form-with-vba_topic3675_post14635.html#14635</guid>
  </item> 
  <item>
   <title><![CDATA[Fill out a form with vba : but i&amp;#039;m using lite version...]]></title>
   <link>http://www.quickpdf.org/forum/fill-out-a-form-with-vba_topic3675_post14634.html#14634</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://www.quickpdf.org/forum/member_profile.asp?PF=3100">eternity</a><br /><strong>Subject:</strong> 3675<br /><strong>Posted:</strong> 12 Feb 19 at 11:50AM<br /><br />but i'm using lite version and i don't have license key]]>
   </description>
   <pubDate>Tue, 12 Feb 2019 11:50:02 +0000</pubDate>
   <guid isPermaLink="true">http://www.quickpdf.org/forum/fill-out-a-form-with-vba_topic3675_post14634.html#14634</guid>
  </item> 
  <item>
   <title><![CDATA[Fill out a form with vba : Here there are few first sample...]]></title>
   <link>http://www.quickpdf.org/forum/fill-out-a-form-with-vba_topic3675_post14628.html#14628</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://www.quickpdf.org/forum/member_profile.asp?PF=111">Ingo</a><br /><strong>Subject:</strong> 3675<br /><strong>Posted:</strong> 11 Feb 19 at 8:39PM<br /><br />Here there are few first sample steps for your first steps:<br><br>How to get a value from a pdf form field:<br><br>&nbsp; try<br>&nbsp;&nbsp;&nbsp; QP := TDebenuPDFLibrary1211.Create;<br>&nbsp;&nbsp;&nbsp; try<br>//&nbsp;&nbsp;&nbsp;&nbsp; QP.UnlockKey('I have inserted my license key here');<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; QP.LoadFromFile(FileName, '');<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; If QP.EncryptionStatus &gt; 0 Then<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; QP.Decrypt;<br><br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; ffc := QP.FormFieldCount;<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; if ffc &gt; 0 then<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; begin<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; nresult := QP.FindFormFieldByTitle(FieldName);<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; xresult := QP.GetFormFieldValueByTitle(FieldName);<br>// . . .<br><br><br>How to set values into a pdf form field:<br><br>&nbsp; try<br>&nbsp;&nbsp;&nbsp; QP := TDebenuPDFLibrary1211.Create;<br>&nbsp;&nbsp;&nbsp; try<br>//&nbsp;&nbsp;&nbsp;&nbsp; QP.UnlockKey('I have inserted my license key here');<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; QP.LoadFromFile(FileName, '');<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; If QP.EncryptionStatus &gt; 0 Then<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; QP.Decrypt;<br><br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; ffc := QP.FormFieldCount;<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; if ffc &gt; 0 then<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; begin<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; QP.SetNeedAppearances(1);<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; QP.SetFormFieldValue( StrToInt(Trim(FieldName)), FieldValue );<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; QP.UpdateAppearanceStream( StrToInt(Trim(FieldName)) );<br>//&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; QP.FlattenFormField( StrToInt(Trim(FieldName)) );<br>// . . .<br><br><br>Additionally here you'll find the developer guide.<br>Inside there's a section 4.10 regarding pdf forms:<br>http://www.debenu.com/docs/pdf_library_developer_guide/foxit_quick_pdf_library_15_developer_guide.pdf<br><br><br><br>]]>
   </description>
   <pubDate>Mon, 11 Feb 2019 20:39:38 +0000</pubDate>
   <guid isPermaLink="true">http://www.quickpdf.org/forum/fill-out-a-form-with-vba_topic3675_post14628.html#14628</guid>
  </item> 
  <item>
   <title><![CDATA[Fill out a form with vba : if you&amp;#039;re using an existing...]]></title>
   <link>http://www.quickpdf.org/forum/fill-out-a-form-with-vba_topic3675_post14627.html#14627</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://www.quickpdf.org/forum/member_profile.asp?PF=111">Ingo</a><br /><strong>Subject:</strong> 3675<br /><strong>Posted:</strong> 11 Feb 19 at 8:23PM<br /><br />if you're using an existing form then i think you want to read the inserted content?<br>This you can do with QuickPDF.<br>You can create a new pdf form with QuickPDF, too.<br>You can create a pdf form...<br>You can insert and save values into existing pdf form fields...<br>You can read existing content from pdf form fields...<br>All this you can do with QuickPDF.<br>Here are the relevant functionalities:<br>https://www.debenu.com/docs/pdf_library_reference/FormFields.php<br><br>]]>
   </description>
   <pubDate>Mon, 11 Feb 2019 20:23:04 +0000</pubDate>
   <guid isPermaLink="true">http://www.quickpdf.org/forum/fill-out-a-form-with-vba_topic3675_post14627.html#14627</guid>
  </item> 
  <item>
   <title><![CDATA[Fill out a form with vba : thanks for the reply,I&amp;#039;m...]]></title>
   <link>http://www.quickpdf.org/forum/fill-out-a-form-with-vba_topic3675_post14626.html#14626</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://www.quickpdf.org/forum/member_profile.asp?PF=3100">eternity</a><br /><strong>Subject:</strong> 3675<br /><strong>Posted:</strong> 11 Feb 19 at 10:10AM<br /><br />thanks for the reply,<div><br></div><div>I'm using access 2013 64 bit what can i do for work QickPDF?</div><div>i'm using an existing form.</div><div>i have to create form fields?&nbsp;</div>]]>
   </description>
   <pubDate>Mon, 11 Feb 2019 10:10:01 +0000</pubDate>
   <guid isPermaLink="true">http://www.quickpdf.org/forum/fill-out-a-form-with-vba_topic3675_post14626.html#14626</guid>
  </item> 
  <item>
   <title><![CDATA[Fill out a form with vba : Hi eternity,yes... with QuickPDF...]]></title>
   <link>http://www.quickpdf.org/forum/fill-out-a-form-with-vba_topic3675_post14623.html#14623</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://www.quickpdf.org/forum/member_profile.asp?PF=111">Ingo</a><br /><strong>Subject:</strong> 3675<br /><strong>Posted:</strong> 11 Feb 19 at 9:13AM<br /><br /><div>Hi eternity,</div><div><br></div><div>yes... with QuickPDF it's possible to fill out, read and/or save formfields.</div><div>To your system environment:</div><div>The old vba is 32 bit i think and you're working with the 64-bit-dll ... i don't think this will work ;-)</div><div>The other thing: QuickPDF uses unicode strings - so you have to convert the content from the old vba to unicode before using string functions from the library.</div><div>Details: DeleteFormField needs the index of a form field - not the name of a form field.</div><div>The other thing: A real deletion of a form field and setting a value as next action doesn't make sense ;-)</div><div>You should have a look here in the samples-section regarding form fields.</div><div>Here's a sample about how to create form fields:<br>https://www.debenu.com/kb/create-pdf-form-fields-programmatically/<br></div><div><br></div><div>Cheers and welcome here,</div><div>Ingo</div><div><br></div><div><br></div>]]>
   </description>
   <pubDate>Mon, 11 Feb 2019 09:13:27 +0000</pubDate>
   <guid isPermaLink="true">http://www.quickpdf.org/forum/fill-out-a-form-with-vba_topic3675_post14623.html#14623</guid>
  </item> 
  <item>
   <title><![CDATA[Fill out a form with vba : hello I&amp;#039;m trying to create...]]></title>
   <link>http://www.quickpdf.org/forum/fill-out-a-form-with-vba_topic3675_post14622.html#14622</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://www.quickpdf.org/forum/member_profile.asp?PF=3100">eternity</a><br /><strong>Subject:</strong> 3675<br /><strong>Posted:</strong> 11 Feb 19 at 8:20AM<br /><br /><div>hello I'm trying to create a code with the DebenuPDFLibrary64Lite1114 in vba to fill out a form and save it.</div><div>is it possible with this library?</div><div><br></div><div>i have made this code</div><div><div>Private Sub Comando0_Click()</div><div>Dim pdf As Object</div><div>Dim strmodello As String</div><div>Dim file As String</div><div><br></div><div>Set pdf = CreateObject("DebenuPDFLibrary64Lite1114.PDFLibrary")</div><div><br></div><div>Call pdf.LoadFromFile("C:\pippo\Modello.pdf", "")</div><div><br></div><div>pdf.SetNeedAppearances (0)</div><div><br></div><div><br></div><div>Call pdf.DeleteFormField(codicefiscale)</div><div><br></div><div>Call pdf.SetFormFieldValue(codicefiscale, "dng")</div><div><br></div><div><br></div><div>Call pdf.SaveToFile("C:\pippo\stampa.pdf")</div><div><br></div><div>Set pdf = Nothing</div><div>End Sub</div></div><div>where codicefiscale is the name of the field of the form</div><div>then i have the "error 438 propriety or method are not supported form object"</div><div><br></div>]]>
   </description>
   <pubDate>Mon, 11 Feb 2019 08:20:47 +0000</pubDate>
   <guid isPermaLink="true">http://www.quickpdf.org/forum/fill-out-a-form-with-vba_topic3675_post14622.html#14622</guid>
  </item> 
 </channel>
</rss>