<?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 : XFA Field Check Box</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 : XFA Field Check Box]]></description>
  <copyright>Copyright (c) 2006-2013 Web Wiz Forums - All Rights Reserved.</copyright>
  <pubDate>Fri, 01 May 2026 06:40:29 +0000</pubDate>
  <lastBuildDate>Sun, 05 Nov 2017 20:07:59 +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=3520</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[XFA Field Check Box : for me it works fine ;-)Perhaps...]]></title>
   <link>http://www.quickpdf.org/forum/xfa-field-check-box_topic3520_post14022.html#14022</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://www.quickpdf.org/forum/member_profile.asp?PF=111">Ingo</a><br /><strong>Subject:</strong> 3520<br /><strong>Posted:</strong> 05 Nov 17 at 8:07PM<br /><br />for me it works fine ;-)<br>Perhaps it would help if you're able to post more than only one single line of code...<br><br>]]>
   </description>
   <pubDate>Sun, 05 Nov 2017 20:07:59 +0000</pubDate>
   <guid isPermaLink="true">http://www.quickpdf.org/forum/xfa-field-check-box_topic3520_post14022.html#14022</guid>
  </item> 
  <item>
   <title><![CDATA[XFA Field Check Box : This works fine with text fields...]]></title>
   <link>http://www.quickpdf.org/forum/xfa-field-check-box_topic3520_post14021.html#14021</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://www.quickpdf.org/forum/member_profile.asp?PF=2425">mdgodfrey</a><br /><strong>Subject:</strong> 3520<br /><strong>Posted:</strong> 03 Nov 17 at 9:55PM<br /><br />This works fine with text fields but I can't get either method to work with a check box.]]>
   </description>
   <pubDate>Fri, 03 Nov 2017 21:55:03 +0000</pubDate>
   <guid isPermaLink="true">http://www.quickpdf.org/forum/xfa-field-check-box_topic3520_post14021.html#14021</guid>
  </item> 
  <item>
   <title><![CDATA[XFA Field Check Box : Hi,fpr normal forms (not XFA)...]]></title>
   <link>http://www.quickpdf.org/forum/xfa-field-check-box_topic3520_post14019.html#14019</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://www.quickpdf.org/forum/member_profile.asp?PF=111">Ingo</a><br /><strong>Subject:</strong> 3520<br /><strong>Posted:</strong> 03 Nov 17 at 6:15PM<br /><br />Hi,<br><br>fpr normal forms (not XFA) it works like this:<br>// ...<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&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;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; QP.SetFormFieldValueByTitle( FieldName, FieldValue );<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&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;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; QP.UpdateAppearanceStream(nresult);<br>// ...<br>And you're right a value "On" oder "Off" will change the checkbox and regarding XFA it should work similar ...? BTW: Is your fieldname correct with the slash in it?<br><br><span style="font-size:10px"><br /><br />Edited by Ingo - 03 Nov 17 at 6:16PM</span>]]>
   </description>
   <pubDate>Fri, 03 Nov 2017 18:15:32 +0000</pubDate>
   <guid isPermaLink="true">http://www.quickpdf.org/forum/xfa-field-check-box_topic3520_post14019.html#14019</guid>
  </item> 
  <item>
   <title><![CDATA[XFA Field Check Box : I appreciate the reference. I...]]></title>
   <link>http://www.quickpdf.org/forum/xfa-field-check-box_topic3520_post14018.html#14018</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://www.quickpdf.org/forum/member_profile.asp?PF=2425">mdgodfrey</a><br /><strong>Subject:</strong> 3520<br /><strong>Posted:</strong> 03 Nov 17 at 5:25PM<br /><br />I appreciate the reference. I have been able to extract data from a form and mostly can place data into a form. This guide does give me a few more options I hadn't considered so thanks.<div><br></div><div>The exception for me at the moment is a CheckBox. I can see how to alter the format of the check but so far can only place a check by manually doing that in the form.</div><div>In reading the data from a CheckBox when it is unchecked the field value is 'Off'. So one might think that placing 'On' into the checkbox would activate the check mark. This does not work for me however.</div><div><br></div><div>I am attempting to place that data with this code:</div><div>PDF.SetXFAFormFieldValue('Form1099-S/c1_3', 'On');&nbsp; //Does not produce the check mark</div><div><br></div><div>Doing something similar works just fine it the field is a text box but not when its a check box.</div><div><br></div><div>Thanks again</div>]]>
   </description>
   <pubDate>Fri, 03 Nov 2017 17:25:13 +0000</pubDate>
   <guid isPermaLink="true">http://www.quickpdf.org/forum/xfa-field-check-box_topic3520_post14018.html#14018</guid>
  </item> 
  <item>
   <title><![CDATA[XFA Field Check Box : Hi,perhaps this guide from the...]]></title>
   <link>http://www.quickpdf.org/forum/xfa-field-check-box_topic3520_post14017.html#14017</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://www.quickpdf.org/forum/member_profile.asp?PF=111">Ingo</a><br /><strong>Subject:</strong> 3520<br /><strong>Posted:</strong> 02 Nov 17 at 10:42PM<br /><br />Hi,<br><br>perhaps this guide from the online reference will be a help?<br>http://www.debenu.com/kb/programmatically-extract-form-field-data-pdf-files/<br><br>]]>
   </description>
   <pubDate>Thu, 02 Nov 2017 22:42:49 +0000</pubDate>
   <guid isPermaLink="true">http://www.quickpdf.org/forum/xfa-field-check-box_topic3520_post14017.html#14017</guid>
  </item> 
  <item>
   <title><![CDATA[XFA Field Check Box : I can populate fields in a XFA...]]></title>
   <link>http://www.quickpdf.org/forum/xfa-field-check-box_topic3520_post14016.html#14016</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://www.quickpdf.org/forum/member_profile.asp?PF=2425">mdgodfrey</a><br /><strong>Subject:</strong> 3520<br /><strong>Posted:</strong> 02 Nov 17 at 9:30PM<br /><br />I can populate fields in a XFA document as long as it it a text field.<div>I don't see anyway to check a field that is a Check Box however.</div><div><br></div><div>Does anyone know how to do that?</div><div><br></div><div>Thanks</div>]]>
   </description>
   <pubDate>Thu, 02 Nov 2017 21:30:24 +0000</pubDate>
   <guid isPermaLink="true">http://www.quickpdf.org/forum/xfa-field-check-box_topic3520_post14016.html#14016</guid>
  </item> 
 </channel>
</rss>