<?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 : Update checkbox field</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 : Update checkbox field]]></description>
  <copyright>Copyright (c) 2006-2013 Web Wiz Forums - All Rights Reserved.</copyright>
  <pubDate>Sat, 04 Apr 2026 19:43:19 +0000</pubDate>
  <lastBuildDate>Mon, 03 Oct 2011 18:04: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=1980</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[Update checkbox field : The form was generated by Acrobat...]]></title>
   <link>http://www.quickpdf.org/forum/update-checkbox-field_topic1980_post8433.html#8433</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://www.quickpdf.org/forum/member_profile.asp?PF=1714">alecd4</a><br /><strong>Subject:</strong> 1980<br /><strong>Posted:</strong> 03 Oct 11 at 6:04PM<br /><br />The form was generated by Acrobat X PRO from an HTML form. I email this form to support - case# 8911]]>
   </description>
   <pubDate>Mon, 03 Oct 2011 18:04:25 +0000</pubDate>
   <guid isPermaLink="true">http://www.quickpdf.org/forum/update-checkbox-field_topic1980_post8433.html#8433</guid>
  </item> 
  <item>
   <title><![CDATA[Update checkbox field : By the looks of the form field...]]></title>
   <link>http://www.quickpdf.org/forum/update-checkbox-field_topic1980_post8430.html#8430</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://www.quickpdf.org/forum/member_profile.asp?PF=1483">AndrewC</a><br /><strong>Subject:</strong> 1980<br /><strong>Posted:</strong> 03 Oct 11 at 5:31AM<br /><br />By the looks of the form field name you are using an XFA forms based PDF. &nbsp;I believe we need to do some more work in QPL to get XFA checkboxes working correctly.<div><br></div><div>Andrew.</div>]]>
   </description>
   <pubDate>Mon, 03 Oct 2011 05:31:44 +0000</pubDate>
   <guid isPermaLink="true">http://www.quickpdf.org/forum/update-checkbox-field_topic1980_post8430.html#8430</guid>
  </item> 
  <item>
   <title><![CDATA[Update checkbox field :   What is a correct value to...]]></title>
   <link>http://www.quickpdf.org/forum/update-checkbox-field_topic1980_post8419.html#8419</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://www.quickpdf.org/forum/member_profile.asp?PF=1714">alecd4</a><br /><strong>Subject:</strong> 1980<br /><strong>Posted:</strong> 29 Sep 11 at 6:43PM<br /><br />What is a correct value to assign to a checkbox field in PDF form?<br><br>I was trying "Yes"&nbsp; to set a check mark in a box but nothing was changed. My app gets "Yes" value from xFDF that is coming from the form.<br><br><br>Any other fields -&nbsp; textbox, option list - are okay.<br><br>I am trying to set form's fields in C# using Quickpdf library<br><br>All fields are updated but checkboxes. <br><br>--------------------------------------------------------------------------------------------------------------<br>Here is my code C# that updates checkbox and textbox fields.<br><br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; PDFLibrary Lib = new PDFLibrary(@"QuickPDFDLL0811.DLL");<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Lib.UnlockKey("--key- here--");<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Lib.LoadFromFile("T1.pdf","");<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; int j = Lib.FindFormFieldByTitle("ZmlsZTovLy9DfC9UMS5odG0A.PDS_TEXT_TEXTONE_YAPI_5ccea10a34c3455189ef1c7c6d573bc7");<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; if (j &gt; 0)<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; {<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; int ret = Lib.SetFormFieldValue(j, "Text Value");<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; }<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; j = Lib.FindFormFieldByTitle("ZmlsZTovLy9DfC9UMS5odG0A.PDS_CHECKBOX_CHECKONE_YAPI_8f1048c4b8754ba9bd4a77b9f9bf5f01");<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; if (j &gt; 0)<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; {<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; int ret = Lib.SetFormFieldValue(j, "Yes");<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; }<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Lib.SaveToFile("T1.pdf");<br><br><span style="font-size:10px"><br /><br />Edited by alecd4 - 01 Oct 11 at 12:00AM</span>]]>
   </description>
   <pubDate>Thu, 29 Sep 2011 18:43:07 +0000</pubDate>
   <guid isPermaLink="true">http://www.quickpdf.org/forum/update-checkbox-field_topic1980_post8419.html#8419</guid>
  </item> 
 </channel>
</rss>