<?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 : checkbox creation</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 : checkbox creation]]></description>
  <copyright>Copyright (c) 2006-2013 Web Wiz Forums - All Rights Reserved.</copyright>
  <pubDate>Sun, 05 Apr 2026 00:10:14 +0000</pubDate>
  <lastBuildDate>Mon, 29 Mar 2010 06:03:43 +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=1387</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[checkbox creation : Hello,Thanks very much for your...]]></title>
   <link>http://www.quickpdf.org/forum/checkbox-creation_topic1387_post6318.html#6318</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://www.quickpdf.org/forum/member_profile.asp?PF=1279">pallavi</a><br /><strong>Subject:</strong> 1387<br /><strong>Posted:</strong> 29 Mar 10 at 6:03AM<br /><br />Hello,<br>Thanks very much for your help.<br>it successfully create checkbox.<br>]]>
   </description>
   <pubDate>Mon, 29 Mar 2010 06:03:43 +0000</pubDate>
   <guid isPermaLink="true">http://www.quickpdf.org/forum/checkbox-creation_topic1387_post6318.html#6318</guid>
  </item> 
  <item>
   <title><![CDATA[checkbox creation : Actually, I missed another problem...]]></title>
   <link>http://www.quickpdf.org/forum/checkbox-creation_topic1387_post6313.html#6313</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://www.quickpdf.org/forum/member_profile.asp?PF=1000">Rowan</a><br /><strong>Subject:</strong> 1387<br /><strong>Posted:</strong> 26 Mar 10 at 7:37PM<br /><br />Actually, I missed another problem with your original code. You need to use the SetFormFieldBounds function to set the location of the check box on the page as well as the height and width of the check box, without calling this function, nothing will be drawn onto the page. <br><br>So this should work:<br><br>$iDf6 = $qp-&gt;NewFormField("male", 3);<br> $qp-&gt;SetFormFieldValue($iDf6, "1");<br> $qp-&gt;SetFormFieldBounds($iDf6, 100, 400, 23, 23);<br> $qp-&gt;SetFormFieldCheckStyle($iDf6,1,1); <br> $qp-&gt;SetFormFieldBorderColor($iDf6,0,0,0);<br> $qp-&gt;SetNeedAppearances(1);<br><br>The SetFormFieldValue function can be used to turn on or off the check box (i.e. check, uncheck).<br><br>Turn On<br>$qp-&gt;SetFormFieldValue($iDf6, "Yes");<br><br>Turn Off<br>$qp-&gt;SetFormFieldValue($iDf6, "No");<br><br>Hope this helps!]]>
   </description>
   <pubDate>Fri, 26 Mar 2010 19:37:36 +0000</pubDate>
   <guid isPermaLink="true">http://www.quickpdf.org/forum/checkbox-creation_topic1387_post6313.html#6313</guid>
  </item> 
  <item>
   <title><![CDATA[checkbox creation : hello,i have tried as yu said...]]></title>
   <link>http://www.quickpdf.org/forum/checkbox-creation_topic1387_post6303.html#6303</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://www.quickpdf.org/forum/member_profile.asp?PF=1279">pallavi</a><br /><strong>Subject:</strong> 1387<br /><strong>Posted:</strong> 26 Mar 10 at 10:27AM<br /><br />hello,<br>i have tried as yu said but still it doesn't create chekbox pls help me to figure out this code<br><br>$iDf6 = $qp-&gt;NewFormField("male", 3);<br>&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;$qp-&gt;SetFormFieldValue($iDf6, "1");<br>&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;$qp-&gt;SetFormFieldCheckStyle($iDf6,1,1);<br>&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;$qp-&gt;SetFormFieldBorderColor($iDf6,0,0,0);<br>&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;$qp-&gt;SetNeedAppearances(1);]]>
   </description>
   <pubDate>Fri, 26 Mar 2010 10:27:06 +0000</pubDate>
   <guid isPermaLink="true">http://www.quickpdf.org/forum/checkbox-creation_topic1387_post6303.html#6303</guid>
  </item> 
  <item>
   <title><![CDATA[checkbox creation :  Have you tried setting the border...]]></title>
   <link>http://www.quickpdf.org/forum/checkbox-creation_topic1387_post6298.html#6298</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://www.quickpdf.org/forum/member_profile.asp?PF=1000">Rowan</a><br /><strong>Subject:</strong> 1387<br /><strong>Posted:</strong> 26 Mar 10 at 6:49AM<br /><br />Have you tried setting the border color as well using&nbsp;SetFormFieldBorderColor? If you don't give the check box form field a border color, it will be white and not visible...<div><br></div><div>Something like the below for a black border:</div><div><br></div><div><div>$iDf6 = $qp-&gt;NewFormField("male", 3);</div><div>$qp-&gt;SetFormFieldValue($iDf6, "1");</div><div>$qp-&gt;SetFormFieldCheckStyle($iDf6,1,1);</div><div>$qp-&gt;SetFormFieldCheckStyle($iDf6,0,0,0);</div><div>$qp-&gt;SetNeedAppearances(1);</div></div><span style="font-size:10px"><br /><br />Edited by Rowan - 26 Mar 10 at 6:51AM</span>]]>
   </description>
   <pubDate>Fri, 26 Mar 2010 06:49:46 +0000</pubDate>
   <guid isPermaLink="true">http://www.quickpdf.org/forum/checkbox-creation_topic1387_post6298.html#6298</guid>
  </item> 
  <item>
   <title><![CDATA[checkbox creation : hello,i have used following code...]]></title>
   <link>http://www.quickpdf.org/forum/checkbox-creation_topic1387_post6297.html#6297</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://www.quickpdf.org/forum/member_profile.asp?PF=1279">pallavi</a><br /><strong>Subject:</strong> 1387<br /><strong>Posted:</strong> 26 Mar 10 at 6:46AM<br /><br />hello,<br>i have used following code but it doesn'r create checkbox marked with checked<br><br>&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; $iDf6 = $qp-&gt;NewFormField("male", 3);<br>&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; $qp-&gt;SetFormFieldValue($iDf6, "1");<br>&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; $qp-&gt;SetNeedAppearances(1);<br>&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; $qp-&gt;SetFormFieldCheckStyle($iDf6,1,1);<br>]]>
   </description>
   <pubDate>Fri, 26 Mar 2010 06:46:11 +0000</pubDate>
   <guid isPermaLink="true">http://www.quickpdf.org/forum/checkbox-creation_topic1387_post6297.html#6297</guid>
  </item> 
  <item>
   <title><![CDATA[checkbox creation : Hi Pallavi!Please read here:ht...]]></title>
   <link>http://www.quickpdf.org/forum/checkbox-creation_topic1387_post6296.html#6296</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://www.quickpdf.org/forum/member_profile.asp?PF=111">Ingo</a><br /><strong>Subject:</strong> 1387<br /><strong>Posted:</strong> 26 Mar 10 at 6:42AM<br /><br />Hi Pallavi!<br><br>Please read here:<br>http://www.quickpdflibrary.com/help/quickpdf/FormFields.php<br>Have a look at SetForm...<br><br>Cheers and welcome here,<br>Ingo<br><br>]]>
   </description>
   <pubDate>Fri, 26 Mar 2010 06:42:51 +0000</pubDate>
   <guid isPermaLink="true">http://www.quickpdf.org/forum/checkbox-creation_topic1387_post6296.html#6296</guid>
  </item> 
  <item>
   <title><![CDATA[checkbox creation : how to create checked chekbox?i...]]></title>
   <link>http://www.quickpdf.org/forum/checkbox-creation_topic1387_post6285.html#6285</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://www.quickpdf.org/forum/member_profile.asp?PF=1279">pallavi</a><br /><strong>Subject:</strong> 1387<br /><strong>Posted:</strong> 25 Mar 10 at 10:17AM<br /><br />how to create checked chekbox?<br>i have read functions but i m not getting which functions to be used for creation of chekbox?<br>]]>
   </description>
   <pubDate>Thu, 25 Mar 2010 10:17:41 +0000</pubDate>
   <guid isPermaLink="true">http://www.quickpdf.org/forum/checkbox-creation_topic1387_post6285.html#6285</guid>
  </item> 
 </channel>
</rss>