<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	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/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>ChadSmiley Blog &#187; SnT Thursday</title>
	<atom:link href="http://chadsmiley.com/chadsmiley/category/snt-thursday/feed/" rel="self" type="application/rss+xml" />
	<link>http://chadsmiley.com/chadsmiley</link>
	<description>Things about family, life, coding, and more</description>
	<lastBuildDate>Mon, 16 Jan 2012 03:21:15 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<item>
		<title>SnT &#8211; Change Replicas using Bookmarks</title>
		<link>http://chadsmiley.com/chadsmiley/2006/08/snt-change-replicas-using-bookmarks/</link>
		<comments>http://chadsmiley.com/chadsmiley/2006/08/snt-change-replicas-using-bookmarks/#comments</comments>
		<pubDate>Thu, 24 Aug 2006 14:52:00 +0000</pubDate>
		<dc:creator>ChadSmiley</dc:creator>
				<category><![CDATA[SnT Thursday]]></category>

		<guid isPermaLink="false">http://chadsmiley.com.previewdns.com/chadsmiley/?p=1431</guid>
		<description><![CDATA[When changing replicas using the bookmarks the database is automaticly opened. &#160;This is a nice feature most of the time, but with some database this is not a good thing. &#160;If you don't want the database to open press CONTROL-SHIFT when selecting the Replica. Yes, I have posted this before, but never as a Show-n-Tell.]]></description>
			<content:encoded><![CDATA[<p>When changing replicas using the bookmarks the database is automaticly opened. &nbsp;This is a nice feature most of the time, but with some database this is not a good thing. &nbsp;If you don't want the database to open press CONTROL-SHIFT when selecting the Replica. <br /> <a href="/chadsmiley/wp-content/uploads/2008/12/snt-change-replicas-using-bookmarks.gif"><img src="/chadsmiley/wp-content/uploads/2008/12/snt-change-replicas-using-bookmarks.gif" alt="snt-change-replicas-using-bookmarks" title="snt-change-replicas-using-bookmarks" width="368" height="66" class="alignnone size-full wp-image-847" /></a><br /> Yes, I have posted <a href="/chadsmiley/2005/01/change-replicas-using-bookmarks/"> this</a>  before, but never as a Show-n-Tell.</p>
]]></content:encoded>
			<wfw:commentRss>http://chadsmiley.com/chadsmiley/2006/08/snt-change-replicas-using-bookmarks/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>SnT Thursday &#8211; Military Time</title>
		<link>http://chadsmiley.com/chadsmiley/2006/05/snt-thursday-military-time/</link>
		<comments>http://chadsmiley.com/chadsmiley/2006/05/snt-thursday-military-time/#comments</comments>
		<pubDate>Wed, 10 May 2006 23:05:00 +0000</pubDate>
		<dc:creator>ChadSmiley</dc:creator>
				<category><![CDATA[SnT Thursday]]></category>
		<category><![CDATA[Domino]]></category>

		<guid isPermaLink="false">http://chadsmiley.com.previewdns.com/chadsmiley/?p=1405</guid>
		<description><![CDATA[Ever wanted to categories information based on date\time.The sorting was not whate I expected becase 10:44 AM is after 09:08 AM. Military time was the first thing that came to mind and I found just what I was looking for at Lotus Notes FAQ - How do you convert a time field to display as [...]]]></description>
			<content:encoded><![CDATA[<p>Ever wanted to categories information based on date\time.The sorting was not whate I expected becase 10:44 AM is after 09:08 AM.  Military time was the first thing that came to mind and I found just what I was looking for at <a href="http://www.keysolutions.com/NotesFAQ/howtime.html">Lotus Notes FAQ - How do you convert a time field to display as military time?</a> from <a href="http://www.keysolutions.com/blogs/kenyee.nsf">Key Yee</a>.  I did add the date to the string, the only chnage is contacting the hour, minute and seconds into an array and then imploding it using a colon, which is quicker than h + ":" + m +":" + s.</p>

<div class="wp_syntax"><div class="code"><pre class="lotusformulas" style="font-family:monospace;"><span style="">REM {From Jason Collier (jcollier@sd.synetics.com)};</span> 
DateTime := <span style="color: #0000FF;">@Created</span>; 
time := <span style="color: #0000FF;">@Time</span><span style="color: #000000;">&#40;</span>dateTime<span style="color: #000000;">&#41;</span>; 
t:= <span style="color: #0000FF;">@Text</span><span style="color: #000000;">&#40;</span><span style="color: #0000FF;">@Time</span><span style="color: #000000;">&#40;</span>time<span style="color: #000000;">&#41;</span><span style="color: #000000;">&#41;</span>; 
t2:=<span style="color: #0000FF;">@Left</span><span style="color: #000000;">&#40;</span><span style="color: #0000FF;">@Text</span><span style="color: #000000;">&#40;</span><span style="color: #0000FF;">@ReplaceSubstring</span><span style="color: #000000;">&#40;</span><span style="color: #0000FF;">@Text</span><span style="color: #000000;">&#40;</span><span style="color: #0000FF;">@Time</span><span style="color: #000000;">&#40;</span>time<span style="color: #000000;">&#41;</span><span style="color: #000000;">&#41;</span>; <span style="color: #FF00FF;">&quot;:&quot;</span> ;<span style="color: #FF00FF;">&quot;&quot;</span><span style="color: #000000;">&#41;</span><span style="color: #000000;">&#41;</span>; <span style="color: #FF00FF;">6</span><span style="color: #000000;">&#41;</span>; 
h:=<span style="color: #0000FF;">@Left</span><span style="color: #000000;">&#40;</span>t2;<span style="color: #FF00FF;">2</span><span style="color: #000000;">&#41;</span>; 
s:=<span style="color: #0000FF;">@Right</span><span style="color: #000000;">&#40;</span>t2;<span style="color: #FF00FF;">2</span><span style="color: #000000;">&#41;</span>; 
m:=<span style="color: #0000FF;">@Middle</span><span style="color: #000000;">&#40;</span>t2;<span style="color: #FF00FF;">2</span>;<span style="color: #FF00FF;">2</span><span style="color: #000000;">&#41;</span>; 
AM:=<span style="color: #0000FF;">@ReplaceSubstring</span><span style="color: #000000;">&#40;</span><span style="color: #0000FF;">@Left</span><span style="color: #000000;">&#40;</span>t2;<span style="color: #FF00FF;">2</span><span style="color: #000000;">&#41;</span> ; <span style="color: #FF00FF;">&quot;12&quot;</span> ;<span style="color: #FF00FF;">&quot;00&quot;</span><span style="color: #000000;">&#41;</span>; 
 PM:=<span style="color: #0000FF;">@ReplaceSubstring</span><span style="color: #000000;">&#40;</span><span style="color: #0000FF;">@Left</span><span style="color: #000000;">&#40;</span>t2;<span style="color: #FF00FF;">2</span><span style="color: #000000;">&#41;</span> ; <span style="color: #FF00FF;">&quot;12&quot;</span> ;<span style="color: #FF00FF;">&quot;12&quot;</span><span style="color: #000000;">&#41;</span>; 
 PM2:=<span style="color: #0000FF;">@Text</span><span style="color: #000000;">&#40;</span><span style="color: #0000FF;">@TextToNumber</span><span style="color: #000000;">&#40;</span>h<span style="color: #000000;">&#41;</span>+<span style="color: #FF00FF;">12</span><span style="color: #000000;">&#41;</span>; 
 timecheck:= <span style="color: #0000FF;">@If</span><span style="color: #000000;">&#40;</span><span style="color: #0000FF;">@Contains</span><span style="color: #000000;">&#40;</span>t;<span style="color: #FF00FF;">&quot;AM&quot;</span><span style="color: #000000;">&#41;</span>; AM ; <span style="color: #0000FF;">@If</span><span style="color: #000000;">&#40;</span><span style="color: #0000FF;">@Contains</span><span style="color: #000000;">&#40;</span>t;<span style="color: #FF00FF;">&quot;PM&quot;</span><span style="color: #000000;">&#41;</span> &amp;amp; <span style="color: #0000FF;">@Contains</span><span style="color: #000000;">&#40;</span><span style="color: #0000FF;">@Left</span><span style="color: #000000;">&#40;</span>t2;<span style="color: #FF00FF;">2</span><span style="color: #000000;">&#41;</span>;<span style="color: #FF00FF;">&quot;12&quot;</span><span style="color: #000000;">&#41;</span> ; PM ; PM2<span style="color: #000000;">&#41;</span><span style="color: #000000;">&#41;</span>; 
 MilTime := timecheck : m : s ; 
   <span style="color: #0000FF;">@Text</span><span style="color: #000000;">&#40;</span> <span style="color: #0000FF;">@Date</span><span style="color: #000000;">&#40;</span> DateTime <span style="color: #000000;">&#41;</span> <span style="color: #000000;">&#41;</span> + <span style="color: #FF00FF;">&quot;\\&quot;</span> + <span style="color: #0000FF;">@Implode</span><span style="color: #000000;">&#40;</span> MilTime ; <span style="color: #FF00FF;">&quot;:&quot;</span> <span style="color: #000000;">&#41;</span></pre></div></div>

]]></content:encoded>
			<wfw:commentRss>http://chadsmiley.com/chadsmiley/2006/05/snt-thursday-military-time/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>SnT Thursday &#8211; View Icons as Categories</title>
		<link>http://chadsmiley.com/chadsmiley/2006/04/snt-thursday-view-icons-as-categories/</link>
		<comments>http://chadsmiley.com/chadsmiley/2006/04/snt-thursday-view-icons-as-categories/#comments</comments>
		<pubDate>Thu, 27 Apr 2006 14:25:00 +0000</pubDate>
		<dc:creator>ChadSmiley</dc:creator>
				<category><![CDATA[SnT Thursday]]></category>
		<category><![CDATA[Blog]]></category>
		<category><![CDATA[Formula]]></category>
		<category><![CDATA[Image]]></category>
		<category><![CDATA[Notes]]></category>
		<category><![CDATA[Web]]></category>

		<guid isPermaLink="false">http://chadsmiley.com.previewdns.com/chadsmiley/?p=1403</guid>
		<description><![CDATA[I like to check how referrers are getting to this blog, so I use the view 'Referers\All by Date' view to monitor it. One of my frustrations about this view is that either a refer is marked as valid or invalid. Which is not totally accurate because not all invalid entries have been validated. So [...]]]></description>
			<content:encoded><![CDATA[<p>I like to check how referrers are getting to this blog, so I use the view 'Referers\All by Date' view to monitor it.  One of my frustrations about this view is that either a refer is marked as valid or invalid.  Which is not totally accurate because not all invalid entries have been validated.  So I added a third icon that indicates that the referrer has not been validated.  The third icon helped but I still found myself wasting time looking through the documents.    </p>
<p> To speed things up I added categorization (descending order) to the indicator column and my view now looks like this:<br />
 <a href="http://chadsmiley.com/chadsmiley/wp-content/uploads/2008/12/snt-thursday-view-icons-as-categories-1.gif"><img src="http://chadsmiley.com/chadsmiley/wp-content/uploads/2008/12/snt-thursday-view-icons-as-categories-1.gif" alt="" title="snt-thursday-view-icons-as-categories-1" width="217" height="232" class="aligncent size-full wp-image-855" /></a><br />
 <br/>  <a href="http://chadsmiley.com/chadsmiley/wp-content/uploads/2008/12/snt-thursday-view-icons-as-categories-2.gif"><img src="http://chadsmiley.com/chadsmiley/wp-content/uploads/2008/12/snt-thursday-view-icons-as-categories-2.gif" alt="" title="snt-thursday-view-icons-as-categories-2" width="217" height="232" class="aligcenter size-full wp-image-855" /></a></p>
<p> There is only one thing wrong with this, no twisties!  As you can see (second picture) I do have them set to show.  Even tried using my own 'Twistie Image' but still no luck.  When 'Display values as icons' is disabled the twisties appear in Notes.  No matter the setting for this column the twisties always show on the web, thanks Lotus for the consistency.  </p>
<p> The column formula is very simple:</p>

<div class="wp_syntax"><div class="code"><pre class="lotusformulas" style="font-family:monospace;"><span style="color: #0000FF;">@If</span><span style="color: #000000;">&#40;</span>Verify = <span style="color: #FF00FF;">1</span>; <span style="color: #FF00FF;">82</span>; Verify = <span style="color: #FF00FF;">0</span>; <span style="color: #FF00FF;">81</span>; <span style="color: #FF00FF;">162</span><span style="color: #000000;">&#41;</span></pre></div></div>

<p> <b>Update:</b> It seems that the view icon is the twistie because clicking on the image once expands or collapses it.   </p>
]]></content:encoded>
			<wfw:commentRss>http://chadsmiley.com/chadsmiley/2006/04/snt-thursday-view-icons-as-categories/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>SnT Thursday &#8211; Tray It!</title>
		<link>http://chadsmiley.com/chadsmiley/2006/04/snt-thursday-tray-it/</link>
		<comments>http://chadsmiley.com/chadsmiley/2006/04/snt-thursday-tray-it/#comments</comments>
		<pubDate>Thu, 20 Apr 2006 12:47:00 +0000</pubDate>
		<dc:creator>ChadSmiley</dc:creator>
				<category><![CDATA[SnT Thursday]]></category>
		<category><![CDATA[Google]]></category>
		<category><![CDATA[Microsoft]]></category>
		<category><![CDATA[Notes]]></category>
		<category><![CDATA[Windows]]></category>

		<guid isPermaLink="false">http://chadsmiley.com.previewdns.com/chadsmiley/?p=1399</guid>
		<description><![CDATA[This is one of small but useful tools that I have been using for some time. &#160; allows to save precious Taskbar space for minimized windows. For each application which applies TrayIt! it creates a small icon in the System Tray. (System Tray area is located near the Clock). When application's window is minimized this [...]]]></description>
			<content:encoded><![CDATA[<p>This is one of <a href=" http://chadsmiley.com/chadsmiley/2005/09/small-but-useful/ "> small but useful</a>  tools that I have been using for some time. &nbsp;  </p>
<div class=quotebox>allows to save precious Taskbar space for minimized windows. For each application which applies TrayIt! it creates a small icon in the System Tray. (System Tray area is located near the Clock). When application's window is minimized this icon represents the application on the Taskbar instead of the regular "minimized rectangle".</p>
<p>It is particularly useful for background tasks you typically keep running on your PC all day long like your favorite E-mail client, Real Player, etc.</p></div>
<div>
<p> Try It! has improved since my last post, it has a much nicer UI. &nbsp;Even though it is only in <a href=http://www.teamcti.com/trayit/trayit!_3.1.2.2.zip> beta</a> , it has been very stable for me and worth the risk. &nbsp;Here is the new improved list of applications running  <br /><a href="http://chadsmiley.com/chadsmiley/wp-content/uploads/2008/12/snt-thursday-tray-it-1.gif"><img src="http://chadsmiley.com/chadsmiley/wp-content/uploads/2008/12/snt-thursday-tray-it-1.gif" alt="" title="snt-thursday-tray-it-1" width="389" height="398" class="aligncenter size-full wp-image-854" /></a> </div>
<p> I have circled the features that I have set. &nbsp;I am always up for single clicking instead of that double stuff, except for Lotus Notes double right click!  <br /><a href="http://chadsmiley.com/chadsmiley/wp-content/uploads/2008/12/snt-thursday-tray-it-2.gif"><img src="http://chadsmiley.com/chadsmiley/wp-content/uploads/2008/12/snt-thursday-tray-it-2.gif" alt="" title="snt-thursday-tray-it-2" width="389" height="398" class="aligncenter size-full wp-image-854" /></a> .  </p>
<p> For some applications like Microsoft Active Sync or Google Talk there is already a system try icon, so selecting the option not to show in the system tray just makes sense.  <br /><a href="http://chadsmiley.com/chadsmiley/wp-content/uploads/2008/12/snt-thursday-tray-it-3.gif"><img src="http://chadsmiley.com/chadsmiley/wp-content/uploads/2008/12/snt-thursday-tray-it-3.gif" alt="" title="snt-thursday-tray-it-3" width="389" height="398" class="aligncenter size-full wp-image-854" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://chadsmiley.com/chadsmiley/2006/04/snt-thursday-tray-it/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>SnT Thursday &#8211; Java &amp; Domino Designer</title>
		<link>http://chadsmiley.com/chadsmiley/2006/03/snt-thursday-java-domino-designer/</link>
		<comments>http://chadsmiley.com/chadsmiley/2006/03/snt-thursday-java-domino-designer/#comments</comments>
		<pubDate>Wed, 15 Mar 2006 23:35:00 +0000</pubDate>
		<dc:creator>ChadSmiley</dc:creator>
				<category><![CDATA[SnT Thursday]]></category>
		<category><![CDATA[Domino]]></category>

		<guid isPermaLink="false">http://chadsmiley.com.previewdns.com/chadsmiley/?p=1392</guid>
		<description><![CDATA[Yes, the Java editor in Domino is really bad. &#160;So I do all of my development in eclipse, and have worked with the beta version of Domiclipse. &#160;This tip has nothing to do with either, but with the Java editor in Domino. Well I lied about doing 'all' of my development in eclipse because, when [...]]]></description>
			<content:encoded><![CDATA[<p>Yes, the Java editor in Domino is really bad. &nbsp;So I do all of my development in <a href="http://www.eclipse.org">eclipse</a>, and have worked with the <a href=" http://chadsmiley.com/chadsmiley/2006/01/domiclipse/ ">beta version</a> of <a href="http://www.domiclipse.com/">Domiclipse</a>. &nbsp;This tip has nothing to do with either, but with the Java editor in Domino. <br/> <br/> Well I lied about doing 'all' of my development in eclipse because, when I need to do a quick change I make it in Designer. &nbsp;Which leads to my biggest frustration about the Java editor in Designer. Not seeing all of the methods available for a given class, or the class not showing at all. &nbsp;The problem is the editor is treating some text as a string, the compiler is handling it correctly because the code compiles and runs correct. &nbsp;It is not all strings just the ones with \&quot; in it. &nbsp;Yes, that simple, and the fix is just as simple. &nbsp;All I do is place // \&quot; at the end of the line. <br/> <br/> So if you have any Java that you import into Domino then please make sure that there is an even number of // \&quot; on every line of your Java code!</p>
]]></content:encoded>
			<wfw:commentRss>http://chadsmiley.com/chadsmiley/2006/03/snt-thursday-java-domino-designer/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>SnT Thursday &#8211; Formula Average</title>
		<link>http://chadsmiley.com/chadsmiley/2006/03/snt-thursday-formula-average/</link>
		<comments>http://chadsmiley.com/chadsmiley/2006/03/snt-thursday-formula-average/#comments</comments>
		<pubDate>Thu, 09 Mar 2006 16:56:00 +0000</pubDate>
		<dc:creator>ChadSmiley</dc:creator>
				<category><![CDATA[SnT Thursday]]></category>
		<category><![CDATA[Formula]]></category>

		<guid isPermaLink="false">http://chadsmiley.com.previewdns.com/chadsmiley/?p=1390</guid>
		<description><![CDATA[]]></description>
			<content:encoded><![CDATA[]]></content:encoded>
			<wfw:commentRss>http://chadsmiley.com/chadsmiley/2006/03/snt-thursday-formula-average/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>SnT Thursday &#8211; Edit Document Fields from one to another</title>
		<link>http://chadsmiley.com/chadsmiley/2006/03/snt-thursday-edit-document-fields-from-one-to-another/</link>
		<comments>http://chadsmiley.com/chadsmiley/2006/03/snt-thursday-edit-document-fields-from-one-to-another/#comments</comments>
		<pubDate>Thu, 02 Mar 2006 11:57:00 +0000</pubDate>
		<dc:creator>ChadSmiley</dc:creator>
				<category><![CDATA[SnT Thursday]]></category>
		<category><![CDATA[Edit Document Fields]]></category>
		<category><![CDATA[Formula]]></category>

		<guid isPermaLink="false">http://chadsmiley.com.previewdns.com/chadsmiley/?p=1388</guid>
		<description><![CDATA[For this tip I had to look back at the history of Edit Document Fields to find when this feature was added. &#160;It became available in 5.0.0 when Edit Document Fields was upgraded to use the new formula options in ND 6. &#160;The tip is allows me to be lazy and reduce my typing mistakes. [...]]]></description>
			<content:encoded><![CDATA[<p>For this tip I had to look back at the <a href="http://chadsmiley.com/chadsmiley/edit-document-fields-history"> history of Edit Document Fields</a>  to find when this feature was added. &nbsp;It became available in 5.0.0 when Edit Document Fields was upgraded to use the new formula options in ND 6. &nbsp;The tip is allows me to be lazy and reduce my typing mistakes.   </p>
<p> If you are not familiar, Edit Document Fields provides a means of up dating document fields without any agents. &nbsp;It even displays the current value of the field that is being updated. &nbsp;With 5.0 the ability to updated multiple documents was possible. &nbsp;  </p>
<p> For the tip lets say that I would like the 'StoryTitle' of the 'Edit Document Fields 5.0.0 Code' to have the same value as the 'Edit Document Fields History' document shown below.  <br /><img src="http://chadsmiley.com/chadsmiley/wp-content/uploads/2008/12/snt-thursday-edit-document-fields-from-one-to-another-1.gif" alt=""/> </p>
<p> The prompting for which field to change and the new value of the field happens before navigating through the documents. &nbsp;  <br /><img src="http://chadsmiley.com/chadsmiley/wp-content/uploads/2008/12/snt-thursday-edit-document-fields-from-one-to-another-2.gif" alt=""/> </p>
<p> That is it! &nbsp;Remember the default value of the field is determined base on the currently selected document.    </p>
]]></content:encoded>
			<wfw:commentRss>http://chadsmiley.com/chadsmiley/2006/03/snt-thursday-edit-document-fields-from-one-to-another/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>SnT Thursday &#8211; Reference Lookup 1.1.0</title>
		<link>http://chadsmiley.com/chadsmiley/2006/02/snt-thursday-reference-lookup-1-1-0/</link>
		<comments>http://chadsmiley.com/chadsmiley/2006/02/snt-thursday-reference-lookup-1-1-0/#comments</comments>
		<pubDate>Thu, 23 Feb 2006 15:25:00 +0000</pubDate>
		<dc:creator>ChadSmiley</dc:creator>
				<category><![CDATA[SnT Thursday]]></category>
		<category><![CDATA[Domino]]></category>
		<category><![CDATA[Formula]]></category>
		<category><![CDATA[Reference Lookup]]></category>

		<guid isPermaLink="false">http://chadsmiley.com.previewdns.com/chadsmiley/?p=1383</guid>
		<description><![CDATA[Here is my second installment of Show n Tell Thursday . &#160;In July of last year Reference Lookup was published, which talked about using alias to get a database location from documents instead of having to hard code the path or replica IDs in code. &#160;The initial release used Server names and paths with Reference [...]]]></description>
			<content:encoded><![CDATA[<p>Here is my second installment of <a href="http://technorati.com/tag/Show-n-Tell+Thursday"> Show n Tell Thursday</a> . &nbsp;In July of last year <a href=http://chadsmiley.com/chadsmiley/2005/07/reference-lookup/> Reference Lookup</a>  was published, which talked about using alias to get a database location from documents instead of having to hard code the path or replica IDs in code. &nbsp;The initial release used Server names and paths with <a href=http://chadsmiley.com/chadsmiley/wp-content/uploads/downloads/2010/03/Reference-Lookup-Library-1.1.0.zip> Reference Lookup 1.1.0</a>  replica IDs can be used to access database information through Java, LotusScript, or Formula. &nbsp;<a href="http://www.openntf.org/projects/pmt.nsf/ProjectLookup/Quick+Elementer"> Quick Elementer</a>  was also updated in this release, which allows the Reference Lookup design elements to be quickly copied to an application. &nbsp; </p>
<p> The Reference Lookup database has been a life saver for me, because it has allowed each of my environments to look the same but to be configured differently. &nbsp;A good example is in our production environment. &nbsp;A workflow application is used to allow employees information to be submitted and approved. &nbsp;Once it is approved it updates the Domino Directory (names.nsf) nightly through an agent. &nbsp;Because names.nsf is used in each of the environments as the primary address book a different database is used. &nbsp;With the use of Reference Lookup all the needs to be changed is the database path of the same alias. &nbsp;No code changes and the configuration stays with each of the environments. &nbsp;On top of the environments is the ability to move database home or to some other computer and not have to worry about changing code. </p>
<p> Another example is the use of Reference Lookup to define the path of files that are used to import or export information from Domino. &nbsp;I have been able to move databases and files in production as requested without having to make any code changes, without having to re-test the application, and make the changes in minutes.  </p>
]]></content:encoded>
			<wfw:commentRss>http://chadsmiley.com/chadsmiley/2006/02/snt-thursday-reference-lookup-1-1-0/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>SnT Thursday &#8211; LotusScript Calls &amp; Format Formula</title>
		<link>http://chadsmiley.com/chadsmiley/2006/02/snt-thursday-lotusscript-calls-format-formula/</link>
		<comments>http://chadsmiley.com/chadsmiley/2006/02/snt-thursday-lotusscript-calls-format-formula/#comments</comments>
		<pubDate>Thu, 16 Feb 2006 14:13:00 +0000</pubDate>
		<dc:creator>ChadSmiley</dc:creator>
				<category><![CDATA[SnT Thursday]]></category>
		<category><![CDATA[Domino]]></category>
		<category><![CDATA[Formula]]></category>
		<category><![CDATA[Image]]></category>
		<category><![CDATA[Notes]]></category>
		<category><![CDATA[Word]]></category>
		<category><![CDATA[WordPress]]></category>

		<guid isPermaLink="false">http://chadsmiley.com.previewdns.com/chadsmiley/?p=1382</guid>
		<description><![CDATA[Thanks Rocky for the SnT idea, and also to Vince for the SnT image. This will be two parts a show and a tell.   Tell Rocky asked everyone to use Julian's LotusScript 2 HTML on Joe Litton's page for those of you trying to Show or Tell some LotusScript.   Ester Storm was thinking [...]]]></description>
			<content:encoded><![CDATA[<p>Thanks <a href="http://www.lotusgeek.com">Rocky</a> for the SnT idea, and also to <a href="http://blog.vinceschuurman.com/vince/home/ndt4.nsf/(LUBlogContent)/200602160921">Vince</a> for the SnT image. This will be two parts a show and a tell.  </p>
<p><strong>Tell</strong><br />
<a href="http://www.lotusgeek.com/SapphireOak/LotusGeekBlog.nsf/d6plinks/ROLR-6LYJEG">Rocky asked</a> everyone to use <a href="http://www.nsftools.com">Julian's</a> <a href="http://www.nsftools.com/tips/NotesTips.htm#ls2html">LotusScript 2 HTML</a> on <a href="http://joelitton.net/A559B2/home.nsf/ConvertLS?OpenForm">Joe Litton's page</a> for those of you trying to Show or Tell some LotusScript.  <a href="http://esthermstrom.blogspot.com"></a> Ester Storm was thinking of writing a <a href="http://www.chadsmiley.com/Formula2HTML">Formula to HTML</a> which has been around for about a year.</p>
<p><strong>Show</strong><br />
Back in December <a href="http://blogs.teamstudio.com">Craig Schumann</a> published a tool called <a href="http://blogs.teamstudio.com/blog/blog.nsf/htdocs/CSCN6YMJZL.htm">LS Calls</a> .  I liked the concept of using LS Calls to determine which variables are no longer being used, and variables are being used before they are ever set.  The only thing that I did not like is having to type the command in every time, so I took <a href="http://www.chrisdoig.net">Chris Doig</a> concept that he used for <a href="http://www.chrisdoig.net/ChrisDoig/ChrisDoig.nsf/dx/08062005080427AMCDOKPD.htm">Set Template Version</a> and applied it to LS Calls as seen in the screenshot:<br />
<img src="http://chadsmiley.com/chadsmiley/wp-content/uploads/2008/12/snt-thursday-lotusscript-calls-format-formula-1.gif" alt="" /></p>
<p>When editing a LotusScript Calls Configuration there will be help available just as Craig defined.  One other feature that I like is the ability to open the output in NotePad or anything else you wish.<br />
<img src="http://chadsmiley.com/chadsmiley/wp-content/uploads/2008/12/snt-thursday-lotusscript-calls-format-formula-2.gif" alt="" /></p>
<p>The code is very simple until I needed to have LotusScript wait for the execution of LSCalls before it tried to open the output or import the CSV.  <a href="http://www.keysolutions.com/blogs/kenyee.nsf"> Ken Yee</a> came to the rescue with '<a href="http://www.keysolutions.com/NotesFAQ/canprogram.html"> Can you start a program in Notes and wait for it to finish?</a> ' from 1998.  There was one other gotcha, having to write the command to a batch file and executing the batch file, so if anyone has a better idea let me know.</p>
<p>The LotusScript Calls database is not that fancy but maybe the concept storing and running command type programs from Domino.  Enjoy!</p>
<p><strong>Update: </strong>I lost the database in my transition to WordPress, so if anyone has it please send it to me, thanks.</p>
]]></content:encoded>
			<wfw:commentRss>http://chadsmiley.com/chadsmiley/2006/02/snt-thursday-lotusscript-calls-format-formula/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</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 10:55:50 -->
