<?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 : Renaming Fields</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 : Renaming Fields]]></description>
  <copyright>Copyright (c) 2006-2013 Web Wiz Forums - All Rights Reserved.</copyright>
  <pubDate>Fri, 03 Apr 2026 21:06:31 +0000</pubDate>
  <lastBuildDate>Wed, 12 Jun 2019 19:22:51 +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=3709</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[Renaming Fields : Hi Wayne,good to see users with...]]></title>
   <link>http://www.quickpdf.org/forum/renaming-fields_topic3709_post14827.html#14827</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://www.quickpdf.org/forum/member_profile.asp?PF=111">Ingo</a><br /><strong>Subject:</strong> 3709<br /><strong>Posted:</strong> 12 Jun 19 at 7:22PM<br /><br />Hi Wayne,<br><br>good to see users with samples to help and not always questions ;-)<br>Please ... if you want you could put this code into the samples-section as well.<br>Thanks :)<br><br>]]>
   </description>
   <pubDate>Wed, 12 Jun 2019 19:22:51 +0000</pubDate>
   <guid isPermaLink="true">http://www.quickpdf.org/forum/renaming-fields_topic3709_post14827.html#14827</guid>
  </item> 
  <item>
   <title><![CDATA[Renaming Fields : You actually can rename a child...]]></title>
   <link>http://www.quickpdf.org/forum/renaming-fields_topic3709_post14824.html#14824</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://www.quickpdf.org/forum/member_profile.asp?PF=872">waynefulcher</a><br /><strong>Subject:</strong> 3709<br /><strong>Posted:</strong> 11 Jun 19 at 10:14PM<br /><br />You actually can rename a child field. After some searching I found the solution at the bottom of this post, however if I understand your question then you have the exact same issue I have which is not so much renaming a child field but to remove the "parent" leaving only the child field as a normal field.<div>As Ingo mentioned this could only be done if you do not have duplicate fields with the same name.</div><div><br></div><div>In my case I have a PDF and whoever created the fields didn't realize the implication of using periods (.) in the field names. What I want to do is take the following fields:</div><div><br></div><div>Beneficial.Owner&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;(parent)</div><div>Beneficial.Owner.Name&nbsp; &nbsp; &nbsp; &nbsp; (child)</div><div>Beneficial.Owner.Address&nbsp; &nbsp; &nbsp;(child)</div><div><br></div><div>and delete&nbsp;Beneficial.Owner and then replace periods with underscores for the other fields leaving me with only:</div><div><br></div><div>Beneficial_Owner_Name</div><div>Beneficial_Owner_Address</div><div><br></div><div>I am working on a solution for this so if you figure out anything let me know, otherwise if I figure it out I will post it here.<br><div><br></div><div><br></div><div><br></div><div>(Solution for renaming a child field)</div><div>================================================</div><div><p style="margin: 0px 0px 1em; padding: 0px; font-size: 13px; font-family: arial, helvetica, clean, sans-serif;">It is possible to rename a form field using the&nbsp;<a href="http://www.quickpdflibrary.com/help/quickpdf/Set&#070;ormFieldChildTitle.php" target="_blank" rel="nofollow">SetFormFieldChildTitle</a>&nbsp;function in Quick PDF Library. It works like this:</p><p style="margin: 0px 0px 1em; padding: 0px; font-size: 13px; font-family: arial, helvetica, clean, sans-serif;">If you have a parent field called Details, with child fields Name and Address, the full field names will be:</p><pre style="margin-top: 0px; margin-bottom: 1em; padding: 0px; line-height: 13px; font-size: 13px;"><code style="margin: 0px; padding: 0px; line-height: 13px;">Details.NameDetails.Address</code></pre><p style="margin: 0px 0px 1em; padding: 0px; font-size: 13px; font-family: arial, helvetica, clean, sans-serif;">If you wanted to change Details.Name to Details.FirstName you can use:</p><pre style="margin-top: 0px; margin-bottom: 1em; padding: 0px; line-height: 13px; font-size: 13px;"><code style="margin: 0px; padding: 0px; line-height: 13px;">int FieldID = QP.FindFormFieldByTitle("Details.Name");QP.SetFormFieldChildTitle(FieldID, "FirstName");</code></pre></div></div>]]>
   </description>
   <pubDate>Tue, 11 Jun 2019 22:14:38 +0000</pubDate>
   <guid isPermaLink="true">http://www.quickpdf.org/forum/renaming-fields_topic3709_post14824.html#14824</guid>
  </item> 
  <item>
   <title><![CDATA[Renaming Fields : Hi Wolfgang,you should read in...]]></title>
   <link>http://www.quickpdf.org/forum/renaming-fields_topic3709_post14805.html#14805</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://www.quickpdf.org/forum/member_profile.asp?PF=111">Ingo</a><br /><strong>Subject:</strong> 3709<br /><strong>Posted:</strong> 14 May 19 at 5:15PM<br /><br />Hi Wolfgang,<br><br>you should read in the online reference in the description belonging to SetFormFieldTitle;-)<br>There you can read "...renames the title of a parent form field...". Additionally: "...you have to make sure that the name is unique...".<br>But this is NOT for child fields.<br>BTW: I don't know that you've extracted the complete form field name. <br>Don't know if only QuickPDF has probs with more than one field with the same name but i don't think that your pdf has one name twice?<br>There's no functionality in the library to rename child fields.<br>What you can do ( i wouldn't do this) is to remove the child field and use NewChildFormField:<br>https://www.debenu.com/docs/pdf_library_reference/NewChildFormField.php<br>...with a new title.<br><br><br>]]>
   </description>
   <pubDate>Tue, 14 May 2019 17:15:45 +0000</pubDate>
   <guid isPermaLink="true">http://www.quickpdf.org/forum/renaming-fields_topic3709_post14805.html#14805</guid>
  </item> 
  <item>
   <title><![CDATA[Renaming Fields : Hi.We got an PDF with Formfields...]]></title>
   <link>http://www.quickpdf.org/forum/renaming-fields_topic3709_post14803.html#14803</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://www.quickpdf.org/forum/member_profile.asp?PF=1792">PDFNow</a><br /><strong>Subject:</strong> 3709<br /><strong>Posted:</strong> 14 May 19 at 8:42AM<br /><br />Hi.<div><br></div><div>We got an PDF with Formfields (Parnents and Childs). Now we are renaming the Childfields, so there is no connection anymore to the parent field.</div><div><br></div><div>We using "SetFormFieldTitle" to rename and it works. But not in a way we like to.</div><div><br></div><div>Example:</div><div><br></div><div><u>Before renaming</u></div><div>Parentfield = "Textbox1"</div><div>Childfield = "Textbox1."</div><div><br></div><div><u>After renaming</u></div><div><div>Parentfield = "Textbox1"</div><div>Childfield = "Textbox1.NewName"</div></div><div><br></div><div>We just want the NewName as FormFieldTitle without the Parentname.</div><div><br></div><div>Our QuickPDF Version is 11.15.</div><div><br></div><div><a href="https://www.dict.cc/englisch-deutsch/Kind.html" target="_blank" rel="nofollow">Kind</a><span style="font-family: arial, helvetica, sans-serif; font-size: 13px; : rgb255, 204, 153;">&nbsp;</span><a href="https://www.dict.cc/englisch-deutsch/regards.html" target="_blank" rel="nofollow">regards</a></div><div>Wolfgang</div>]]>
   </description>
   <pubDate>Tue, 14 May 2019 08:42:25 +0000</pubDate>
   <guid isPermaLink="true">http://www.quickpdf.org/forum/renaming-fields_topic3709_post14803.html#14803</guid>
  </item> 
 </channel>
</rss>