<?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 : GetFormFieldTitle appends a period</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 : GetFormFieldTitle appends a period]]></description>
  <copyright>Copyright (c) 2006-2013 Web Wiz Forums - All Rights Reserved.</copyright>
  <pubDate>Mon, 25 May 2026 13:57:06 +0000</pubDate>
  <lastBuildDate>Tue, 23 Apr 2019 22:17:01 +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=3700</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[GetFormFieldTitle appends a period : It would be really better to post...]]></title>
   <link>http://www.quickpdf.org/forum/getformfieldtitle-appends-a-period_topic3700_post14750.html#14750</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://www.quickpdf.org/forum/member_profile.asp?PF=111">Ingo</a><br /><strong>Subject:</strong> 3700<br /><strong>Posted:</strong> 23 Apr 19 at 10:17PM<br /><br />It would be really better to post longer code snippets and sample pdfs (there are many file hoster out there).<br><br>What you're written regarding the points has to do while using radio buttons or checkboxes.<br>Here's one of my samples a partly extraction from a form.<br>Have a look and then you know while there are more than one form field INSIDE for one field ;-)<br><br>Radiobutton;No List-/Combobox;;Input;Not printable;Visible;;0;1. SubName for Sex: MALE<br>Radiobutton;No List-/Combobox;;Input;Not printable;Visible;;0;RadiobuttonGroup: Sex;MALE<br>Radiobutton;No List-/Combobox;;Input;Not printable;Visible;;0;2. SubName for Sex: FEMALE<br><br>The radio button "Sex" offers two options "MALE" and "FEMALE".<br>The options are subnames grouped under "Sex".<br>As a default in my sample the radio button group is set to "MALE".<br><br><span style="font-size:10px"><br /><br />Edited by Ingo - 23 Apr 19 at 10:20PM</span>]]>
   </description>
   <pubDate>Tue, 23 Apr 2019 22:17:01 +0000</pubDate>
   <guid isPermaLink="true">http://www.quickpdf.org/forum/getformfieldtitle-appends-a-period_topic3700_post14750.html#14750</guid>
  </item> 
  <item>
   <title><![CDATA[GetFormFieldTitle appends a period : I am using Delphi 7 and QuickPDF...]]></title>
   <link>http://www.quickpdf.org/forum/getformfieldtitle-appends-a-period_topic3700_post14748.html#14748</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://www.quickpdf.org/forum/member_profile.asp?PF=872">waynefulcher</a><br /><strong>Subject:</strong> 3700<br /><strong>Posted:</strong> 23 Apr 19 at 7:34PM<br /><br />I am using Delphi 7 and QuickPDF 16.x<div>I was curious if anyone knows why some field names returned from GetFormFieldTitle() method sometimes contains a period (.) at the end of the field name? And along the same lines it will return the actual field name I input when designing the PDF (without the period) but for that field there seems to be no valid Page data.</div><div>Like my other questions, I am using PhantomPDF 9.x to edit pdfs.</div><div>Below is an example of the code I am using to list out fields in the pdf.</div><div><br></div><div><div><font face="Courier New, Courier, mono">&nbsp; &nbsp; for FieldIX := 1 to qpdf.FormFieldCount do begin</font></div><div><font face="Courier New, Courier, mono">&nbsp; &nbsp; &nbsp; sLine := ' Pg: '+IntToStr(qpdf.GetFormFieldPage(FieldIX))+</font></div><div><font face="Courier New, Courier, mono">&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;' Ht: '+FloatToStr(qpdf.GetFormFieldBound(FieldIX, PDF_Bound_Height))+</font></div><div><font face="Courier New, Courier, mono">&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;' Wd: '+FloatToStr(qpdf.GetFormFieldBound(FieldIX, PDF_Bound_Width));</font></div><div><font face="Courier New, Courier, mono">&nbsp; &nbsp; &nbsp;&nbsp;</font></div><div><font face="Courier New, Courier, mono">&nbsp; &nbsp; &nbsp; sortedFields.Add(PadR(qpdf.GetFormFieldTitle(FieldIX), maxFldWidth) + sLine) ;</font></div><div><font face="Courier New, Courier, mono">&nbsp; &nbsp; end ;</font></div></div><div><br></div><div>A snippet of the output from the above code is:</div><div><br></div><div><div><font face="Courier New, Courier, mono">IntRateChgeffective&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;Pg: 0 Ht: 0 Wd: 0</font></div><div><font face="Courier New, Courier, mono">IntRateChgeffective.&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; Pg: 1 Ht: 12 Wd: 84.375</font></div><div><font face="Courier New, Courier, mono">LateChargeAmount&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; Pg: 1 Ht: 12 Wd: 45.75</font></div><div><font face="Courier New, Courier, mono">LateChargeDays&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; Pg: 0 Ht: 0 Wd: 0</font></div><div><font face="Courier New, Courier, mono">LateChargeDays.&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;Pg: 1 Ht: 12 Wd: 21.375</font></div><div><font face="Courier New, Courier, mono">LateChargeGreaterLess&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;Pg: 0 Ht: 0 Wd: 0</font></div><div><font face="Courier New, Courier, mono">LateChargeGreaterLess.&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; Pg: 1 Ht: 12 Wd: 57.75</font></div><div><font face="Courier New, Courier, mono">LateChargeMinimum&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;Pg: 0 Ht: 0 Wd: 0</font></div><div><font face="Courier New, Courier, mono">LateChargeMinimum.&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; Pg: 1 Ht: 12 Wd: 70.91</font></div><div><font face="Courier New, Courier, mono">LateChargePercentage&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; Pg: 0 Ht: 0 Wd: 0</font></div><div><font face="Courier New, Courier, mono">LateChargePercentage.&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;Pg: 1 Ht: 12 Wd: 48</font></div></div><div><br></div><div><br></div><div>For each of the fields listed above, there is only 1 instance of a field with those names actually in the pdf.</div><div>So for example I have only 1 field called LateChargeDays there is only one field.</div><div>Oddly enough some fields, such as LateChargeAmount, it seems to return the correct data, meaning there is not one with a period at the end and the page data is correct for the field without the period.</div><div><br></div><div>Thanks for any help understanding how this is all supposed to work and why.</div><div><br></div><div><br></div><div><br></div><div><br></div>]]>
   </description>
   <pubDate>Tue, 23 Apr 2019 19:34:39 +0000</pubDate>
   <guid isPermaLink="true">http://www.quickpdf.org/forum/getformfieldtitle-appends-a-period_topic3700_post14748.html#14748</guid>
  </item> 
 </channel>
</rss>