<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
		>
<channel>
	<title>Comments on: Edit Document Fields 5.0</title>
	<atom:link href="http://chadsmiley.com/chadsmiley/2005/04/edit-document-fields-5-0/feed/" rel="self" type="application/rss+xml" />
	<link>http://chadsmiley.com/chadsmiley/2005/04/edit-document-fields-5-0/</link>
	<description>Things about family, life, coding, and more</description>
	<lastBuildDate>Mon, 16 Jan 2012 03:20:01 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
	<item>
		<title>By: Edit Document Fields 5.0.1 &#171; ChadSmiley Blog</title>
		<link>http://chadsmiley.com/chadsmiley/2005/04/edit-document-fields-5-0/comment-page-1/#comment-6558</link>
		<dc:creator>Edit Document Fields 5.0.1 &#171; ChadSmiley Blog</dc:creator>
		<pubDate>Mon, 09 Aug 2010 03:40:43 +0000</pubDate>
		<guid isPermaLink="false">http://chadsmiley.com.previewdns.com/chadsmiley/?p=1270#comment-6558</guid>
		<description>[...] quick update to Edit Document Fields 5.0 to validate the new foumula data type. Also update the prompting for which field to edit to include [...]</description>
		<content:encoded><![CDATA[<p>[...] quick update to Edit Document Fields 5.0 to validate the new foumula data type. Also update the prompting for which field to edit to include [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Chad</title>
		<link>http://chadsmiley.com/chadsmiley/2005/04/edit-document-fields-5-0/comment-page-1/#comment-2426</link>
		<dc:creator>Chad</dc:creator>
		<pubDate>Thu, 21 Apr 2005 23:04:00 +0000</pubDate>
		<guid isPermaLink="false">http://chadsmiley.com.previewdns.com/chadsmiley/?p=1270#comment-2426</guid>
		<description>The prompts are different yours uses [OkCancelList] and my uses [OkCancelEditCombo], the edit combo allows the a new values to be added. &lt;br /&gt; &lt;br /&gt;Check out the section &quot;Field Selection/Add&quot; when prompted to select a field you have the ability to add a new one. &lt;br /&gt; &lt;br /&gt;This is not the first time that someone has mentioned this.  I will update the prompt to indicate that a field can be added.</description>
		<content:encoded><![CDATA[<p>The prompts are different yours uses [OkCancelList] and my uses [OkCancelEditCombo], the edit combo allows the a new values to be added. </p>
<p>Check out the section &#8220;Field Selection/Add&#8221; when prompted to select a field you have the ability to add a new one. </p>
<p>This is not the first time that someone has mentioned this.  I will update the prompt to indicate that a field can be added.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: mt69clp</title>
		<link>http://chadsmiley.com/chadsmiley/2005/04/edit-document-fields-5-0/comment-page-1/#comment-2427</link>
		<dc:creator>mt69clp</dc:creator>
		<pubDate>Thu, 21 Apr 2005 20:05:00 +0000</pubDate>
		<guid isPermaLink="false">http://chadsmiley.com.previewdns.com/chadsmiley/?p=1270#comment-2427</guid>
		<description>nice button. I already have some &#039;EditFields&#039;-buttons in use but every button has its own pro&#039;s and con&#039;s...&lt;br /&gt;This one is nearly complete but I like to have the ability to create a new field with this one, too.&lt;br /&gt;&lt;br /&gt;In one of my other buttons it looks like this (I didn&#039;t code this by myself):&lt;br /&gt;&lt;br /&gt;...&lt;br /&gt;REM {Prompt for which field needs to be updated.};&lt;br /&gt;EditField := @Prompt([OkCancelList]; &quot;Select Field To Update&quot;; &quot;Select the field you wish to update:&quot;; &quot;&quot;; List : &quot;**** ADD A NEW FIELD ****&quot;);&lt;br /&gt;&lt;br /&gt;REM {If adding a new field, prompt for the field name};&lt;br /&gt;NewFieldName := @If(EditField = &quot;**** ADD A NEW FIELD ****&quot;; @Prompt([OkCancelEdit]; &quot;Enter Field Name&quot;; &quot;Enter the name of the new field:&quot;; &quot;&quot;); &quot;&quot;);&lt;br /&gt;CheckFieldName := @If(@IsMember(NewFieldName; List) &amp; NewFieldName != &quot;&quot;; @Return(@Prompt([Ok]; &quot;Already In List&quot;; &quot;The field &quot; + NewFieldName + &quot; already exists on the document.&quot;)); &quot;&quot;);&lt;br /&gt;UpdateVariable := @If(NewFieldName = &quot;&quot;; &quot;&quot;; EditField := NewFieldName);&lt;br /&gt;...&lt;br /&gt;</description>
		<content:encoded><![CDATA[<p>nice button. I already have some &#8216;EditFields&#8217;-buttons in use but every button has its own pro&#8217;s and con&#8217;s&#8230;<br />This one is nearly complete but I like to have the ability to create a new field with this one, too.</p>
<p>In one of my other buttons it looks like this (I didn&#8217;t code this by myself):</p>
<p>&#8230;<br />REM {Prompt for which field needs to be updated.};<br />EditField := @Prompt([OkCancelList]; &#8220;Select Field To Update&#8221;; &#8220;Select the field you wish to update:&#8221;; &#8220;&#8221;; List : &#8220;**** ADD A NEW FIELD ****&#8221;);</p>
<p>REM {If adding a new field, prompt for the field name};<br />NewFieldName := @If(EditField = &#8220;**** ADD A NEW FIELD ****&#8221;; @Prompt([OkCancelEdit]; &#8220;Enter Field Name&#8221;; &#8220;Enter the name of the new field:&#8221;; &#8220;&#8221;); &#8220;&#8221;);<br />CheckFieldName := @If(@IsMember(NewFieldName; List) &amp; NewFieldName != &#8220;&#8221;; @Return(@Prompt([Ok]; &#8220;Already In List&#8221;; &#8220;The field &#8221; + NewFieldName + &#8221; already exists on the document.&#8221;)); &#8220;&#8221;);<br />UpdateVariable := @If(NewFieldName = &#8220;&#8221;; &#8220;&#8221;; EditField := NewFieldName);<br />&#8230;</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Chad</title>
		<link>http://chadsmiley.com/chadsmiley/2005/04/edit-document-fields-5-0/comment-page-1/#comment-2425</link>
		<dc:creator>Chad</dc:creator>
		<pubDate>Mon, 18 Apr 2005 15:13:00 +0000</pubDate>
		<guid isPermaLink="false">http://chadsmiley.com.previewdns.com/chadsmiley/?p=1270#comment-2425</guid>
		<description>Enhancement #1:&lt;br /&gt;When entering Forumula the code currently uses the basic set field prompt (See Get New Value section).  The next release will have more formula error checking &lt;img src=&quot;http://www.chadsmiley.com/chadsmiley/home.nsf/emoticons/DLYH-5N3GJ8/$FILE/shocked.gif&quot;&gt;  using:&lt;br /&gt;&lt;br /&gt;@CheckFormulaSyntax(formulaText)</description>
		<content:encoded><![CDATA[<p>Enhancement #1:<br />When entering Forumula the code currently uses the basic set field prompt (See Get New Value section).  The next release will have more formula error checking <img src="http://www.chadsmiley.com/chadsmiley/home.nsf/emoticons/DLYH-5N3GJ8/$FILE/shocked.gif"/>  using:</p>
<p>@CheckFormulaSyntax(formulaText)</p>
]]></content:encoded>
	</item>
</channel>
</rss>

<!-- Performance optimized by W3 Total Cache. Learn more: http://www.w3-edge.com/wordpress-plugins/

Minified using disk: basic
Page Caching using disk: enhanced

Served from: chadsmiley.com @ 2012-02-08 13:30:08 -->
