<?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>Stronico - Steroids for Networking</title>
	<atom:link href="http://blog.stronico.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://blog.stronico.com</link>
	<description>We help the world’s best salesmen build better networks</description>
	<lastBuildDate>Tue, 27 Jul 2010 22:59:26 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Silverlight Tip &#8211; How to make bold text in a textblock from the CodeBehind</title>
		<link>http://blog.stronico.com/2010/07/silverlight-tip-how-to-make-bold-text-in-a-textblock-from-the-codebehind/</link>
		<comments>http://blog.stronico.com/2010/07/silverlight-tip-how-to-make-bold-text-in-a-textblock-from-the-codebehind/#comments</comments>
		<pubDate>Tue, 27 Jul 2010 22:59:26 +0000</pubDate>
		<dc:creator>Steve French</dc:creator>
				<category><![CDATA[How To Fix]]></category>
		<category><![CDATA[Silverlight]]></category>

		<guid isPermaLink="false">http://blog.stronico.com/?p=526</guid>
		<description><![CDATA[<p><strong>The Problem: </strong>You need to conditionally bold text in a text block, but you cannot find any way of doing so</p>
<p><strong>The Cause:</strong> For inexplicable reasons, Microsoft chose not to include a FontWeight.Bold in their xaml specification</p>
<p><a href="http://blog.stronico.com/2010/07/silverlight-tip-how-to-make-bold-text-in-a-textblock-from-the-codebehind/" class="more-link">Read more on Silverlight Tip &#8211; How to make bold text in a textblock from the CodeBehind&#8230;</a></p>
<img src="http://blog.stronico.com/?ak_action=api_record_view&#038;id=526&#038;type=feed" alt="" />]]></description>
			<content:encoded><![CDATA[<p><strong>The Problem: </strong>You need to conditionally bold text in a text block, but you cannot find any way of doing so</p>
<p><strong>The Cause:</strong> For inexplicable reasons, Microsoft chose not to include a FontWeight.Bold in their xaml specification</p>
<p><strong>The Solution:</strong> Microsoft did include a FontWeights (note the S) class  To bold text in the codebehind, all you have to do is write this</p>
<blockquote><p>﻿﻿tbbDownloader.FontWeight = FontWeights.Bold;</p></blockquote>
<p>And presto!  Bold Text.</p>
<img src="http://blog.stronico.com/?ak_action=api_record_view&id=526&type=feed" alt="" />]]></content:encoded>
			<wfw:commentRss>http://blog.stronico.com/2010/07/silverlight-tip-how-to-make-bold-text-in-a-textblock-from-the-codebehind/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to fix a missing reference to mscorlib in Visual Studio 2010</title>
		<link>http://blog.stronico.com/2010/07/how-to-fix-a-missing-reference-to-mscorlib-in-visual-studio-2010/</link>
		<comments>http://blog.stronico.com/2010/07/how-to-fix-a-missing-reference-to-mscorlib-in-visual-studio-2010/#comments</comments>
		<pubDate>Mon, 26 Jul 2010 18:28:57 +0000</pubDate>
		<dc:creator>Steve French</dc:creator>
				<category><![CDATA[How To Fix]]></category>
		<category><![CDATA[Microsoft]]></category>
		<category><![CDATA[Software Development]]></category>

		<guid isPermaLink="false">http://blog.stronico.com/?p=523</guid>
		<description><![CDATA[<p><a title="Runtime compiling is great" href="http://www.flickr.com/photos/15304862@N04/4650722495/" target="_blank"><img class="alignright" style="border: 0px initial initial;" src="http://farm5.static.flickr.com/4002/4650722495_e4fd4539c1_m.jpg" border="0" alt="Runtime compiling is great" width="240" height="146" /></a>I was trying to update my main app code to utilize the .Net Framework 4.0 and this happened:</p>
<p><strong>The Problem:</strong> I could find no obvious way to update the mscorlib reference in my solution, so I decide to simply delete it and add it again, and hope that it magically updates to the most recent version.  This is actually what usually happens with Visual Studio.  However, I delete the mscorlib reference, and I am unable to add it back again, I get the error message telling me that mscorlib is already included in the project.</p>
<p><a href="http://blog.stronico.com/2010/07/how-to-fix-a-missing-reference-to-mscorlib-in-visual-studio-2010/" class="more-link">Read more on How to fix a missing reference to mscorlib in Visual Studio 2010&#8230;</a></p>
<img src="http://blog.stronico.com/?ak_action=api_record_view&#038;id=523&#038;type=feed" alt="" />]]></description>
			<content:encoded><![CDATA[<p><a title="Runtime compiling is great" href="http://www.flickr.com/photos/15304862@N04/4650722495/" target="_blank"><img class="alignright" style="border: 0px initial initial;" src="http://farm5.static.flickr.com/4002/4650722495_e4fd4539c1_m.jpg" border="0" alt="Runtime compiling is great" width="240" height="146" /></a>I was trying to update my main app code to utilize the .Net Framework 4.0 and this happened:</p>
<p><strong>The Problem:</strong> I could find no obvious way to update the mscorlib reference in my solution, so I decide to simply delete it and add it again, and hope that it magically updates to the most recent version.  This is actually what usually happens with Visual Studio.  However, I delete the mscorlib reference, and I am unable to add it back again, I get the error message telling me that mscorlib is already included in the project.</p>
<p><strong>The Cause:</strong> This is a known problem in Visual Studio.</p>
<p><strong>The Solution:</strong> I just went into my project (.csproj) file and added the following line</p>
<blockquote><p>&lt;Reference Include=&#8221;mscorlib&#8221; /&gt;</p></blockquote>
<p>And that fixed it.  I still have no idea how to make it use the most recent .Net Framework though.</p>
<p><small><a title="Attribution-NoDerivs License" href="http://creativecommons.org/licenses/by-nd/2.0/" target="_blank"><img src="http://blog.stronico.com/wp-content/plugins/photo-dropper/images/cc.png" border="0" alt="Creative Commons License" width="16" height="16" align="absmiddle" /></a> <a href="http://www.photodropper.com/photos/" target="_blank">photo</a> credit: <a title="dasapfe" href="http://www.flickr.com/photos/15304862@N04/4650722495/" target="_blank">dasapfe</a></small></p>
<img src="http://blog.stronico.com/?ak_action=api_record_view&id=523&type=feed" alt="" />]]></content:encoded>
			<wfw:commentRss>http://blog.stronico.com/2010/07/how-to-fix-a-missing-reference-to-mscorlib-in-visual-studio-2010/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>An odd thing I noticed after years and years of coding</title>
		<link>http://blog.stronico.com/2010/07/an-odd-thing-i-noticed-after-years-and-years-of-coding/</link>
		<comments>http://blog.stronico.com/2010/07/an-odd-thing-i-noticed-after-years-and-years-of-coding/#comments</comments>
		<pubDate>Wed, 21 Jul 2010 18:30:58 +0000</pubDate>
		<dc:creator>Steve French</dc:creator>
				<category><![CDATA[Productivity]]></category>

		<guid isPermaLink="false">http://blog.stronico.com/?p=520</guid>
		<description><![CDATA[<p><a title="365.8 (Distracted by Penmanship)" href="http://www.flickr.com/photos/64693558@N00/2635694952/" target="_blank"><img class="alignright" style="border: 0px initial initial;" src="http://farm4.static.flickr.com/3062/2635694952_452ee2f515_m.jpg" border="0" alt="365.8 (Distracted by Penmanship)" width="240" height="160" /></a> Growing up all of my teachers told me that my handwriting was horrible and needed improvement.  I took two years of Russian in college and somehow learning Cyrillic made my handwriting even worse.  My first few jobs after college had varying degrees of handwriting needed, but over time, and especially after I moved to development full time, I wrote things out longhand less and less.</p>
<p><a href="http://blog.stronico.com/2010/07/an-odd-thing-i-noticed-after-years-and-years-of-coding/" class="more-link">Read more on An odd thing I noticed after years and years of coding&#8230;</a></p>
<img src="http://blog.stronico.com/?ak_action=api_record_view&#038;id=520&#038;type=feed" alt="" />]]></description>
			<content:encoded><![CDATA[<p><a title="365.8 (Distracted by Penmanship)" href="http://www.flickr.com/photos/64693558@N00/2635694952/" target="_blank"><img class="alignright" style="border: 0px initial initial;" src="http://farm4.static.flickr.com/3062/2635694952_452ee2f515_m.jpg" border="0" alt="365.8 (Distracted by Penmanship)" width="240" height="160" /></a> Growing up all of my teachers told me that my handwriting was horrible and needed improvement.  I took two years of Russian in college and somehow learning Cyrillic made my handwriting even worse.  My first few jobs after college had varying degrees of handwriting needed, but over time, and especially after I moved to development full time, I wrote things out longhand less and less.</p>
<p>As I&#8217;ve gotten older I am now writing things out far more than I used to (<a href="http://www.pomodorotechnique.com" target="_blank">thank you Pormodoro Technique</a>) I&#8217;ve noticed that my printing has markedly improved, while I&#8217;ve forgotten how to write cursive, and I can no longer write anything in Cyrillic, though I can still read it to some degree.</p>
<p><small><a title="Attribution-ShareAlike License" href="http://creativecommons.org/licenses/by-sa/2.0/" target="_blank"><img src="http://blog.stronico.com/wp-content/plugins/photo-dropper/images/cc.png" border="0" alt="Creative Commons License" width="16" height="16" align="absmiddle" /></a> <a href="http://www.photodropper.com/photos/" target="_blank">photo</a> credit: <a title="kpwerker" href="http://www.flickr.com/photos/64693558@N00/2635694952/" target="_blank">kpwerker</a></small></p>
<img src="http://blog.stronico.com/?ak_action=api_record_view&id=520&type=feed" alt="" />]]></content:encoded>
			<wfw:commentRss>http://blog.stronico.com/2010/07/an-odd-thing-i-noticed-after-years-and-years-of-coding/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>A successful round of networking &#8211; with presentation lessons learned</title>
		<link>http://blog.stronico.com/2010/07/a-successful-round-of-networking-with-presentation-lessons-learned/</link>
		<comments>http://blog.stronico.com/2010/07/a-successful-round-of-networking-with-presentation-lessons-learned/#comments</comments>
		<pubDate>Thu, 15 Jul 2010 19:18:33 +0000</pubDate>
		<dc:creator>Steve French</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://blog.stronico.com/?p=515</guid>
		<description><![CDATA[<p><a title="Neural Network : basic scheme" href="http://www.flickr.com/photos/21649179@N00/3237928173/" target="_blank"><img class="alignright" style="border: 0px initial initial;" src="http://farm4.static.flickr.com/3430/3237928173_9d99dc9113_m.jpg" border="0" alt="Neural Network : basic scheme" width="240" height="150" /></a>I just returned from a successful lunch at the Duluth Flash Networking event, sponsored brought to you by <a href="http://www.solutionsmarketingllc.com/" target="_blank">Solutions Marketing</a>, and sponsored by <a href="http://www.perduevision.com/" target="_blank">Purdue Vision</a> (a graphic design and marketing firm).  I had a good time and learned more about how to market both myself and Stronico.</p>
<p><a href="http://blog.stronico.com/2010/07/a-successful-round-of-networking-with-presentation-lessons-learned/" class="more-link">Read more on A successful round of networking &#8211; with presentation lessons learned&#8230;</a></p>
<img src="http://blog.stronico.com/?ak_action=api_record_view&#038;id=515&#038;type=feed" alt="" />]]></description>
			<content:encoded><![CDATA[<p><a title="Neural Network : basic scheme" href="http://www.flickr.com/photos/21649179@N00/3237928173/" target="_blank"><img class="alignright" style="border: 0px initial initial;" src="http://farm4.static.flickr.com/3430/3237928173_9d99dc9113_m.jpg" border="0" alt="Neural Network : basic scheme" width="240" height="150" /></a>I just returned from a successful lunch at the Duluth Flash Networking event, sponsored brought to you by <a href="http://www.solutionsmarketingllc.com/" target="_blank">Solutions Marketing</a>, and sponsored by <a href="http://www.perduevision.com/" target="_blank">Purdue Vision</a> (a graphic design and marketing firm).  I had a good time and learned more about how to market both myself and Stronico.</p>
<p>I&#8217;m something of a novice presenter, so I&#8217;m sure that this will not be news to many of my readers, but here are the lessons I drew from the four 90 second presentations I made<span id="more-515"></span></p>
<p><strong><em>My actionable lessons learned</em></strong>: I should</p>
<ul>
<li>speak more slowly</li>
<li>make more eye contact</li>
<li>coordinate hand gestures with eye contact &#8211; I had them off time for a bit and it did not work well at all.</li>
<li>stress the online nature of Stronico &#8211; at the beginning, middle and end.  The online nature of the application was lost on some people</li>
<li>use more props &#8211;  On the spur of the moment I held up a stack of business cards I had gathered by the middle of the event, and that was an &#8220;aha&#8221; moment for some people</li>
<li>stress that Stronico is Mac compatible.  This is something I always assumed that everyone else would assume, but it is not.</li>
<li>concentrate most on the independent artisan &#8211; the pro networker is already too heavily invested in their existing system to ever switch to something else, and the mid level corporate person does not have the power to make any sort of software decisions.  The independent artisan is dependent upon a strong network for business, but maintaining the network will never be their top priority(that is why they are artisans) so social maintenance outsourcing is something they are either looking for or open to.</li>
<li>have brochures made.  Selling a visual product verbally is tough.</li>
</ul>
<p><small><a title="Attribution License" href="http://creativecommons.org/licenses/by/2.0/" target="_blank"><img src="http://blog.stronico.com/wp-content/plugins/photo-dropper/images/cc.png" border="0" alt="Creative Commons License" width="16" height="16" align="absmiddle" /></a> <a href="http://www.photodropper.com/photos/" target="_blank">photo</a> credit: <a title="fdecomite" href="http://www.flickr.com/photos/21649179@N00/3237928173/" target="_blank">fdecomite</a></small></p>
<img src="http://blog.stronico.com/?ak_action=api_record_view&id=515&type=feed" alt="" />]]></content:encoded>
			<wfw:commentRss>http://blog.stronico.com/2010/07/a-successful-round-of-networking-with-presentation-lessons-learned/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>CSS trick &#8211; how to use two classes on a single DOM object</title>
		<link>http://blog.stronico.com/2010/07/css-trick-how-to-use-two-classes-on-a-single-dom-object/</link>
		<comments>http://blog.stronico.com/2010/07/css-trick-how-to-use-two-classes-on-a-single-dom-object/#comments</comments>
		<pubDate>Tue, 13 Jul 2010 21:04:12 +0000</pubDate>
		<dc:creator>Steve French</dc:creator>
				<category><![CDATA[ASP.net]]></category>
		<category><![CDATA[Code Samples]]></category>

		<guid isPermaLink="false">http://blog.stronico.com/?p=513</guid>
		<description><![CDATA[<p>I have no idea how this trick has eluded me for so long, but it is possible to use two classes on the same DOM object.  For example to combine a class called &#8220;TopNav&#8221; and a class called &#8220;SelectedNav&#8221; all you have to do is call them both with code like this</p>
<p><a href="http://blog.stronico.com/2010/07/css-trick-how-to-use-two-classes-on-a-single-dom-object/" class="more-link">Read more on CSS trick &#8211; how to use two classes on a single DOM object&#8230;</a></p>
<img src="http://blog.stronico.com/?ak_action=api_record_view&#038;id=513&#038;type=feed" alt="" />]]></description>
			<content:encoded><![CDATA[<p>I have no idea how this trick has eluded me for so long, but it is possible to use two classes on the same DOM object.  For example to combine a class called &#8220;TopNav&#8221; and a class called &#8220;SelectedNav&#8221; all you have to do is call them both with code like this</p>
<blockquote><p>&lt;div id=&#8221;HomeNavItem&#8221; class=&#8221;TopNav SelectedNav&#8221;&gt;Home&lt;/div&gt;</p></blockquote>
<p>In other words, you&#8217;re just putting them in the same class declaration.  I&#8217;ve been doing this for years and I&#8217;ve never done that before.</p>
<img src="http://blog.stronico.com/?ak_action=api_record_view&id=513&type=feed" alt="" />]]></content:encoded>
			<wfw:commentRss>http://blog.stronico.com/2010/07/css-trick-how-to-use-two-classes-on-a-single-dom-object/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Productivity Tool &#8211; a printed call sheet</title>
		<link>http://blog.stronico.com/2010/07/productivity-tool-a-printed-call-sheet/</link>
		<comments>http://blog.stronico.com/2010/07/productivity-tool-a-printed-call-sheet/#comments</comments>
		<pubDate>Thu, 08 Jul 2010 20:04:26 +0000</pubDate>
		<dc:creator>Steve French</dc:creator>
				<category><![CDATA[Productivity]]></category>

		<guid isPermaLink="false">http://blog.stronico.com/?p=505</guid>
		<description><![CDATA[<p>For unknown reasons I have embraced printed forms this past year.  I started using the <a href="http://www.pomodorotechnique.com/resources.html" target="_blank">Pomodoro Technique  (and their To Do Today sheet) </a> for several months now and recently I came up with a form to keep phone calls on track, and I thought I would share it here.  This will probably make it into the Stronico at some point, but until then, this is what I intend to use.</p>
<p><a href="http://blog.stronico.com/2010/07/productivity-tool-a-printed-call-sheet/" class="more-link">Read more on Productivity Tool &#8211; a printed call sheet&#8230;</a></p>
<img src="http://blog.stronico.com/?ak_action=api_record_view&#038;id=505&#038;type=feed" alt="" />]]></description>
			<content:encoded><![CDATA[<p>For unknown reasons I have embraced printed forms this past year.  I started using the <a href="http://www.pomodorotechnique.com/resources.html" target="_blank">Pomodoro Technique  (and their To Do Today sheet) </a> for several months now and recently I came up with a form to keep phone calls on track, and I thought I would share it here.  This will probably make it into the Stronico at some point, but until then, this is what I intend to use.</p>
<p>Download:</p>
<ul>
<li><a href="http://blog.stronico.com/wp-content/uploads/2010/07/CallSheet.doc">CallSheet</a> (Microsoft Word Document)</li>
<li><a href="http://blog.stronico.com/wp-content/uploads/2010/07/CallSheet.pdf">CallSheet</a> (PDF document)</li>
</ul>
<p>Feel free to download and use!</p>
<img src="http://blog.stronico.com/?ak_action=api_record_view&id=505&type=feed" alt="" />]]></content:encoded>
			<wfw:commentRss>http://blog.stronico.com/2010/07/productivity-tool-a-printed-call-sheet/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>A simple way to create a Microsoft Word document from a template in Asp.net/C#</title>
		<link>http://blog.stronico.com/2010/07/a-simple-way-to-create-a-microsoft-word-document-from-a-template-in-asp-netc/</link>
		<comments>http://blog.stronico.com/2010/07/a-simple-way-to-create-a-microsoft-word-document-from-a-template-in-asp-netc/#comments</comments>
		<pubDate>Tue, 06 Jul 2010 16:32:52 +0000</pubDate>
		<dc:creator>Steve French</dc:creator>
				<category><![CDATA[ASP.net]]></category>
		<category><![CDATA[ASP.net MVC]]></category>
		<category><![CDATA[Code Samples]]></category>
		<category><![CDATA[How To Fix]]></category>

		<guid isPermaLink="false">http://blog.stronico.com/?p=500</guid>
		<description><![CDATA[<p><a title="Will code for food" href="http://www.flickr.com/photos/67523311@N00/114420037/" target="_blank"><img class="alignright" style="border: 0px initial initial;" src="http://farm1.static.flickr.com/45/114420037_f08201d9b8_m.jpg" border="0" alt="Will code for food" width="240" height="180" align="center" /></a> I recently had the need to create a Microsoft Word document from a template.  I initially tried using Office Web Components and Interop but all that really wasn&#8217;t worth the trouble.  I wound up doing global replacements in the html of html   Here is how I did it:</p>
<p><a href="http://blog.stronico.com/2010/07/a-simple-way-to-create-a-microsoft-word-document-from-a-template-in-asp-netc/" class="more-link">Read more on A simple way to create a Microsoft Word document from a template in Asp.net/C#&#8230;</a></p>
<img src="http://blog.stronico.com/?ak_action=api_record_view&#038;id=500&#038;type=feed" alt="" />]]></description>
			<content:encoded><![CDATA[<p><a title="Will code for food" href="http://www.flickr.com/photos/67523311@N00/114420037/" target="_blank"><img class="alignright" style="border: 0px initial initial;" src="http://farm1.static.flickr.com/45/114420037_f08201d9b8_m.jpg" border="0" alt="Will code for food" width="240" height="180" align="center" /></a> I recently had the need to create a Microsoft Word document from a template.  I initially tried using Office Web Components and Interop but all that really wasn&#8217;t worth the trouble.  I wound up doing global replacements in the html of html   Here is how I did it:</p>
<ol>
<li>Open up your template document in word, and put any target areas in special Brackets, the text would read something like &#8220;I, [FULLNAME] do hereby affirm that&#8221;.  I found that the target area had to be in uppercase, I&#8217;m not sure why</li>
<li>Go to &#8220;Save As Html, Filtered&#8221;, and save it in a writeable directory.</li>
<li>In your C# code, first load the entire document into a string</li>
<li>Convert that string into an instance of StringBuilder</li>
<li>Use the StringBuilder Replace function, it would look something like this &#8211;  sb.Replace(&#8220;[FULLNAME]&#8220;, strFullName);</li>
<li>Create a TextWriter, and write the StringBuilder to it &#8211; make sure you&#8217;re saving it with a &#8220;.doc&#8221; extension.</li>
<li>Close the TextWriter</li>
</ol>
<p>All told, the code looks like this</p>
<blockquote>
<div id="_mcePaste">//Create a new filename</div>
<div id="_mcePaste">string strFileName = System.Guid.NewGuid().ToString();</div>
<div id="_mcePaste">string strPathRoot = &#8220;d:\\domains\\MyDomain\\Word\\&#8221;;</div>
<div id="_mcePaste">string strPath = strPathRoot + &#8220;TemplateHtml.doc&#8221;;</div>
<div id="_mcePaste">string str = System.IO.File.ReadAllText(strPath);</div>
<div id="_mcePaste">StringBuilder sb = new StringBuilder();</div>
<div id="_mcePaste">sb.AppendLine(s);</div>
<div id="_mcePaste">//replace the text</div>
<div id="_mcePaste">sb.Replace(&#8220;[FULLNAME]&#8220;, strFullName);</div>
<div id="_mcePaste">//save it out</div>
<div id="_mcePaste">TextWriter tw = new StreamWriter(strPathRoot + strFileName + &#8220;.doc&#8221;);</div>
<div id="_mcePaste">// write a line of text to the file</div>
<div id="_mcePaste">tw.WriteLine(sb.ToString());</div>
<div id="_mcePaste">// close it</div>
<div id="_mcePaste">tw.Close();</div>
<div id="_mcePaste">tw.Dispose();</div>
</blockquote>
<p>That&#8217;s it!</p>
<p><small><a title="Attribution License" href="http://creativecommons.org/licenses/by/2.0/" target="_blank"><img src="http://blog.stronico.com/wp-content/plugins/photo-dropper/images/cc.png" border="0" alt="Creative Commons License" width="16" height="16" align="absmiddle" /></a></small><br />
<small><a href="http://www.photodropper.com/photos/" target="_blank">photo</a> credit: <a title="pvera" href="http://www.flickr.com/photos/67523311@N00/114420037/" target="_blank">pvera</a></small></p>
<img src="http://blog.stronico.com/?ak_action=api_record_view&id=500&type=feed" alt="" />]]></content:encoded>
			<wfw:commentRss>http://blog.stronico.com/2010/07/a-simple-way-to-create-a-microsoft-word-document-from-a-template-in-asp-netc/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Rest In Peace Drex</title>
		<link>http://blog.stronico.com/2010/06/rest-in-peace-drex/</link>
		<comments>http://blog.stronico.com/2010/06/rest-in-peace-drex/#comments</comments>
		<pubDate>Wed, 30 Jun 2010 02:37:31 +0000</pubDate>
		<dc:creator>Steve French</dc:creator>
				<category><![CDATA[Sentiment]]></category>

		<guid isPermaLink="false">http://blog.stronico.com/?p=494</guid>
		<description><![CDATA[<p><a href="http://blog.stronico.com/wp-content/uploads/2010/06/FrenchDog.jpg"><img class="alignright size-full wp-image-495" title="FrenchDog" src="http://blog.stronico.com/wp-content/uploads/2010/06/FrenchDog.jpg" alt="" width="550" height="413" /></a><br />
Today at 3:00 PM I put my dog of six years to sleep.  I got Drex in 2004 when his previous owner was out of the house for too long during the day and Drex needed constant companionship.   Luckily I never left the house and we fit together well.  He was a great dog, preventing at least one break-in at my condo, and always being loving, protective and affectionate.</p>
<p><a href="http://blog.stronico.com/2010/06/rest-in-peace-drex/" class="more-link">Read more on Rest In Peace Drex&#8230;</a></p>
<img src="http://blog.stronico.com/?ak_action=api_record_view&#038;id=494&#038;type=feed" alt="" />]]></description>
			<content:encoded><![CDATA[<p><a href="http://blog.stronico.com/wp-content/uploads/2010/06/FrenchDog.jpg"><img class="alignright size-full wp-image-495" title="FrenchDog" src="http://blog.stronico.com/wp-content/uploads/2010/06/FrenchDog.jpg" alt="" width="550" height="413" /></a><br />
Today at 3:00 PM I put my dog of six years to sleep.  I got Drex in 2004 when his previous owner was out of the house for too long during the day and Drex needed constant companionship.   Luckily I never left the house and we fit together well.  He was a great dog, preventing at least one break-in at my condo, and always being loving, protective and affectionate.</p>
<p>He had his neurotic moments, like the time he chewed through drywall and insulation during a thunderstorm, or the time he opened a locked door (he was quite bright) and climbed the back fence during the Tornado of 2008, but he was a great dog through and through.  Over the past year (his 14th) he entered a marked physical and mental decline and it got to the point of being cruel to let him continue.</p>
<p>Godspeed Mr Buddy.</p>
<img src="http://blog.stronico.com/?ak_action=api_record_view&id=494&type=feed" alt="" />]]></content:encoded>
			<wfw:commentRss>http://blog.stronico.com/2010/06/rest-in-peace-drex/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>My &#8220;So What&#8221; positioning statement</title>
		<link>http://blog.stronico.com/2010/06/my-so-what-positioning-statement/</link>
		<comments>http://blog.stronico.com/2010/06/my-so-what-positioning-statement/#comments</comments>
		<pubDate>Fri, 25 Jun 2010 21:58:08 +0000</pubDate>
		<dc:creator>Steve French</dc:creator>
				<category><![CDATA[Marketing]]></category>

		<guid isPermaLink="false">http://blog.stronico.com/?p=490</guid>
		<description><![CDATA[<p>As I&#8217;m currently reading <a href="http://www.sowhatbook.com" target="_blank">Mark Magnacca&#8217;s excellent book &#8220;So What&#8221;</a> (regarding marketing) I offer my humble Positioning Statement</p>
<blockquote><p><strong>Me:</strong> Do you know how you always forget people you meet and then don&#8217;t see for a while?</p></blockquote>
<p><a href="http://blog.stronico.com/2010/06/my-so-what-positioning-statement/" class="more-link">Read more on My &#8220;So What&#8221; positioning statement&#8230;</a></p>
<img src="http://blog.stronico.com/?ak_action=api_record_view&#038;id=490&#038;type=feed" alt="" />]]></description>
			<content:encoded><![CDATA[<p>As I&#8217;m currently reading <a href="http://www.sowhatbook.com" target="_blank">Mark Magnacca&#8217;s excellent book &#8220;So What&#8221;</a> (regarding marketing) I offer my humble Positioning Statement</p>
<blockquote><p><strong>Me:</strong> Do you know how you always forget people you meet and then don&#8217;t see for a while?</p>
<p><strong>Potential Customer:</strong> Oh yes, that happens to me all the time</p>
<p><strong>Me:</strong> Well, Stronico helps you remember people by showing you where they fit into your life.  You can see their interests, their friends and how you know them in the first place.</p></blockquote>
<p>Coming up with that is an illuminating exercise.     &#8220;Visual Contact Management&#8221; is an accurate description of what <a href="http://stronico.com" target="_blank">Stronico actually does</a>, but most people don&#8217;t see the utility in that description.</p>
<img src="http://blog.stronico.com/?ak_action=api_record_view&id=490&type=feed" alt="" />]]></content:encoded>
			<wfw:commentRss>http://blog.stronico.com/2010/06/my-so-what-positioning-statement/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>I don&#8217;t post for a week and the hits go up!</title>
		<link>http://blog.stronico.com/2010/06/i-dont-post-for-a-week-and-the-hits-go-up/</link>
		<comments>http://blog.stronico.com/2010/06/i-dont-post-for-a-week-and-the-hits-go-up/#comments</comments>
		<pubDate>Fri, 25 Jun 2010 15:19:58 +0000</pubDate>
		<dc:creator>Steve French</dc:creator>
				<category><![CDATA[Misc]]></category>

		<guid isPermaLink="false">http://blog.stronico.com/?p=487</guid>
		<description><![CDATA[<p>By that logic, I wonder how many hits I got before I even started the blog!</p>
<img src="http://blog.stronico.com/?ak_action=api_record_view&#038;id=487&#038;type=feed" alt="" />]]></description>
			<content:encoded><![CDATA[<p>By that logic, I wonder how many hits I got before I even started the blog!</p>
<img src="http://blog.stronico.com/?ak_action=api_record_view&id=487&type=feed" alt="" />]]></content:encoded>
			<wfw:commentRss>http://blog.stronico.com/2010/06/i-dont-post-for-a-week-and-the-hits-go-up/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
