<?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>Don Kitchen &#187; programming</title>
	<atom:link href="http://www.donkitchen.com/category/programming/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.donkitchen.com</link>
	<description>programming, technology, fatherhood and life</description>
	<lastBuildDate>Wed, 31 Mar 2010 11:56:44 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0</generator>
		<item>
		<title>Forcing a user to read (or scroll through) all text before accepting terms</title>
		<link>http://www.donkitchen.com/2009/12/10/forcing-a-user-to-read-or-scroll-through-all-text-before-accepting-terms/</link>
		<comments>http://www.donkitchen.com/2009/12/10/forcing-a-user-to-read-or-scroll-through-all-text-before-accepting-terms/#comments</comments>
		<pubDate>Thu, 10 Dec 2009 23:39:58 +0000</pubDate>
		<dc:creator>Don</dc:creator>
				<category><![CDATA[.net]]></category>
		<category><![CDATA[JavaScript]]></category>
		<category><![CDATA[programming]]></category>
		<category><![CDATA[software]]></category>

		<guid isPermaLink="false">http://www.donkitchen.com/?p=329</guid>
		<description><![CDATA[If you&#8217;ve used a computer before you&#8217;ve undoubtedly scrolled through and agreed to some sort of agreement.  Most likely it was some sort of software license agreement that you didn&#8217;t read about some website you were signing up on or an application that you were installing. Maybe, if you&#8217;ve installed enough software or been on [...]]]></description>
			<content:encoded><![CDATA[<p>If you&#8217;ve used a computer before you&#8217;ve undoubtedly scrolled through and agreed to some sort of agreement.  Most likely it was some sort of <a href="http://en.wikipedia.org/wiki/Software_license_agreement" target="_blank">software license agreement</a> that you didn&#8217;t read about some website you were signing up on or an application that you were installing.</p>
<p>Maybe, if you&#8217;ve installed enough software or been on enough websites you&#8217;ve come across an instance where they actually forced you to scroll all the way down to the bottom of the text before you were able to click &#8220;I Agree&#8221; or whatever acknowledgment they wanted you to use.</p>
<p>Well I was recently faced with creating this exact situation in a web application and ended up using <a href="http://jquery.com/" target="_blank">jQuery </a>to accomplish this in my ASP.NET application.  For my particular situation I ended up putting my content inside a scrollable div.  This can easily be done by using a textbox if you wanted without much effort.</p>
<p>Basically, here&#8217;s what you&#8217;ll need.</p>
<ol>
<li>Reference jQuery (I&#8217;m not going to go into that, you can easily find that out <a href="http://jquery.com/" target="_blank">here</a>)</li>
<li>Put a DIV on your page containing your text that needs to scroll (obviously you&#8217;re putting more than a few sentences or you wouldn&#8217;t be in this boat)</li>
<li>Put a button on your page that, once enabled, will log the user&#8217;s acceptance and redirect them accordingly</li>
<li>Some simple JavaScript to tie the DIV&#8217;s scrolling event to your button</li>
</ol>
<p><strong>Here&#8217;s our DIV:</strong></p>

<div class="wp_syntax"><div class="code"><pre class="html" style="font-family:monospace;">&lt;div style=&quot;width: 400px; height: 400px; overflow: auto; id=&quot;Terms&quot;&gt;
&lt;p&gt;Lots of text to read.&lt;/p&gt;
&lt;p&gt;Lots more text to read&lt;/p&gt;
&lt;/div&gt;</pre></div></div>

<p><strong>Here&#8217;s our button:</strong></p>

<div class="wp_syntax"><div class="code"><pre class="html" style="font-family:monospace;">&lt;asp:Button ID=&quot;ContinueButton&quot; runat=&quot;server&quot; Text=&quot;Continue&quot; /&gt;</pre></div></div>

<p><strong>Here&#8217;s our JavaScript:</strong></p>

<div class="wp_syntax"><div class="code"><pre class="javascript" style="font-family:monospace;">&lt;head runat=&quot;server&quot;&gt;
&lt;script type=&quot;text/javascript&quot; src=&quot;js/jquery-1.3.1.min.js&quot;&gt;&lt;/script&gt;
<span style="color: #339933;">&lt;</span>script type<span style="color: #339933;">=</span><span style="color: #3366CC;">&quot;text/javascript&quot;</span><span style="color: #339933;">&gt;</span>
     $<span style="color: #009900;">&#40;</span>document<span style="color: #009900;">&#41;</span>.<span style="color: #660066;">ready</span><span style="color: #009900;">&#40;</span><span style="color: #003366; font-weight: bold;">function</span><span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span> <span style="color: #009900;">&#123;</span>
&nbsp;
          <span style="color: #006600; font-style: italic;">// Initially disable the button</span>
          $<span style="color: #009900;">&#40;</span><span style="color: #3366CC;">&quot;#ContinueButton&quot;</span><span style="color: #009900;">&#41;</span>.<span style="color: #660066;">attr</span><span style="color: #009900;">&#40;</span><span style="color: #3366CC;">&quot;disabled&quot;</span><span style="color: #339933;">,</span> <span style="color: #3366CC;">&quot;disabled&quot;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
&nbsp;
          <span style="color: #006600; font-style: italic;">// Map the function below to the scroll event of our Terms DIV</span>
          $<span style="color: #009900;">&#40;</span><span style="color: #3366CC;">&quot;#Terms&quot;</span><span style="color: #009900;">&#41;</span>.<span style="color: #000066;">scroll</span><span style="color: #009900;">&#40;</span><span style="color: #003366; font-weight: bold;">function</span><span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span> <span style="color: #009900;">&#123;</span>
               <span style="color: #000066; font-weight: bold;">if</span> <span style="color: #009900;">&#40;</span>$<span style="color: #009900;">&#40;</span><span style="color: #3366CC;">&quot;#Terms&quot;</span><span style="color: #009900;">&#41;</span>.<span style="color: #660066;">AtEnd</span><span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span><span style="color: #009900;">&#41;</span> <span style="color: #009900;">&#123;</span>
                    <span style="color: #006600; font-style: italic;">// Enable the button once we reach the end of the DIV</span>
                    $<span style="color: #009900;">&#40;</span><span style="color: #3366CC;">&quot;#ContinueButton&quot;</span><span style="color: #009900;">&#41;</span>.<span style="color: #660066;">removeAttr</span><span style="color: #009900;">&#40;</span><span style="color: #3366CC;">&quot;disabled&quot;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
               <span style="color: #009900;">&#125;</span>
           <span style="color: #009900;">&#125;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
     <span style="color: #009900;">&#125;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
&nbsp;
     $.<span style="color: #660066;">fn</span>.<span style="color: #660066;">AtEnd</span> <span style="color: #339933;">=</span> <span style="color: #003366; font-weight: bold;">function</span><span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span> <span style="color: #009900;">&#123;</span>
         <span style="color: #000066; font-weight: bold;">return</span> <span style="color: #000066; font-weight: bold;">this</span><span style="color: #009900;">&#91;</span><span style="color: #CC0000;">0</span><span style="color: #009900;">&#93;</span>.<span style="color: #660066;">scrollTop</span> <span style="color: #339933;">+</span> <span style="color: #000066; font-weight: bold;">this</span>.<span style="color: #660066;">height</span><span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span> <span style="color: #339933;">&gt;=</span> <span style="color: #000066; font-weight: bold;">this</span><span style="color: #009900;">&#91;</span><span style="color: #CC0000;">0</span><span style="color: #009900;">&#93;</span>.<span style="color: #660066;">scrollHeight</span><span style="color: #339933;">;</span>
     <span style="color: #009900;">&#125;</span> 
<span style="color: #339933;">&lt;/</span>script<span style="color: #339933;">&gt;</span>
&lt;/head&gt;</pre></div></div>

<p>And that&#8217;s it.  This code is light weight and works in IE, Firefox, Chrome and Safari.  Have any feedback or suggestions on how to make it better?  <a href="http://www.donkitchen.com/contact-me/">Let me know</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.donkitchen.com/2009/12/10/forcing-a-user-to-read-or-scroll-through-all-text-before-accepting-terms/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>CMD HTTP Request &#8211; command line HTTP request utility</title>
		<link>http://www.donkitchen.com/2009/12/09/cmd-http-request-command-line-http-request-utility/</link>
		<comments>http://www.donkitchen.com/2009/12/09/cmd-http-request-command-line-http-request-utility/#comments</comments>
		<pubDate>Wed, 09 Dec 2009 22:50:01 +0000</pubDate>
		<dc:creator>Don</dc:creator>
				<category><![CDATA[.net]]></category>
		<category><![CDATA[CMD HTTP Request]]></category>
		<category><![CDATA[open source]]></category>
		<category><![CDATA[programming]]></category>
		<category><![CDATA[software]]></category>

		<guid isPermaLink="false">http://www.donkitchen.com/?p=319</guid>
		<description><![CDATA[More and more I find that I need to setup some kind of job or scheduled task to accomplish something in .NET on a reoccurring basis.  Typically in the past I&#8217;ve written Windows Services to accomplish this.  While effective, these definitely take longer to write and are harder to debug than say a simple ASP.NET [...]]]></description>
			<content:encoded><![CDATA[<p>More and more I find that I need to setup some kind of job or scheduled task to accomplish something in .NET on a reoccurring basis.  Typically in the past I&#8217;ve written Windows Services to accomplish this.  While effective, these definitely take longer to write and are harder to debug than say a simple ASP.NET page.  What I&#8217;ve done lately is started to move these non-critical, non-security sensitive processes into ASP.NET pages that can be called on a specific schedule via Windows Task Scheduler.</p>
<p>When I started moving this way I realized that I wanted to find a small utility that I could run from a command line to initial a web page request.  It had to be something I could run from a scheduled task and something that I could use to save or log the results.  After doing my due diligence Googling I realized there wasn&#8217;t such a utility that I could easily run from within Windows without installing all kinds of libraries and non-Windows based tools.  So, like any good programmer, I made my own.  Enter <a href="http://cmdhttprequest.codeplex.com/" target="_blank">CMD HTTP Request</a>.</p>
<p>As I said, this utility is small, light weight and runs on Windows via the .NET Framework.  You don&#8217;t need any special commercial programs to run it and it will even check your pages for keywords you specify and save the request&#8217;s results to disk as a HTML file.  This, essentially, is your log of what happened during that request on that date and time.</p>
<p>I won&#8217;t go into too much more detail here.  I think you get the main idea.  You can  download the source code or executable from the <a title="CMD HTTP Request project page" href="http://cmdhttprequest.codeplex.com/" target="_blank">project page on Codeplex</a> and learn more about it.  As always, feel free to leave me any feedback or suggestions either here or via the project page on Codeplex.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.donkitchen.com/2009/12/09/cmd-http-request-command-line-http-request-utility/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>CMD Email v2.0 released</title>
		<link>http://www.donkitchen.com/2009/11/14/cmd-email-v2-0-released/</link>
		<comments>http://www.donkitchen.com/2009/11/14/cmd-email-v2-0-released/#comments</comments>
		<pubDate>Sat, 14 Nov 2009 14:25:00 +0000</pubDate>
		<dc:creator>Don</dc:creator>
				<category><![CDATA[.net]]></category>
		<category><![CDATA[CMD Email]]></category>
		<category><![CDATA[cmd email]]></category>
		<category><![CDATA[programming]]></category>
		<category><![CDATA[software]]></category>

		<guid isPermaLink="false">http://www.donkitchen.com/?p=315</guid>
		<description><![CDATA[CMD Email, the email command line utility I developed (originally discussed here) has been updated to version 2.0. Here are new features for v2.0: Updated to target .NET 3.5 Framework Added support for message body being loaded from a file Added support for multiple file attachments Added support for logging to the Windows Application Event [...]]]></description>
			<content:encoded><![CDATA[<p>CMD Email, the email command line utility I developed (originally discussed <a href="http://www.donkitchen.com/2007/10/26/cmd-email-command-line-email-utility/">here</a>) has been updated to version 2.0.</p>
<p>Here are new features for v2.0:</p>
<ul>
<li>Updated to target .NET 3.5 Framework</li>
<li>Added support for message body being loaded from a file</li>
<li>Added support for multiple file attachments</li>
<li>Added support for logging to the Windows Application Event Log</li>
</ul>
<p>You can download the latest runtime or source from the <a href="http://cmdemail.codeplex.com/" target="_blank">project page on CodePlex</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.donkitchen.com/2009/11/14/cmd-email-v2-0-released/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Dynamically re-size an iFrame&#8217;s height across browsers</title>
		<link>http://www.donkitchen.com/2009/07/08/dynamically-re-size-an-iframes-height-across-browsers/</link>
		<comments>http://www.donkitchen.com/2009/07/08/dynamically-re-size-an-iframes-height-across-browsers/#comments</comments>
		<pubDate>Wed, 08 Jul 2009 15:40:19 +0000</pubDate>
		<dc:creator>Don</dc:creator>
				<category><![CDATA[JavaScript]]></category>
		<category><![CDATA[programming]]></category>
		<category><![CDATA[iframe]]></category>
		<category><![CDATA[javascript]]></category>
		<category><![CDATA[jquery]]></category>

		<guid isPermaLink="false">http://www.donkitchen.com/?p=306</guid>
		<description><![CDATA[A while back I had a need to dynamically re-size an iFrame&#8217;s height and found a solution using a jQuery plug-in called autoHeight.  What I later found was that this solution provided poor results with Internet explorer when my iFrame&#8217;s contents were fairly large and frequently changing (i.e. via navigation inside the iFrame). It took [...]]]></description>
			<content:encoded><![CDATA[<p>A while back I had a need to dynamically re-size an iFrame&#8217;s height and found a solution using a jQuery plug-in called <a href="http://lib.mobius.tw/jquery/myplugin/iframe_autoHeight/api.htm" target="_blank">autoHeight</a>.  What I later found was that this solution provided poor results with Internet explorer when my iFrame&#8217;s contents were fairly large and frequently changing (i.e. via navigation inside the iFrame).</p>
<p>It took quite a bit of tinkering but I was able to come up with a solution that works (and works well) in IE, Firefox, Safari and Chrome.  It still uses <a href="http://jquery.com/" target="_blank">jQuery</a> but doesn&#8217;t depend on a plug-in.  Here&#8217;s the code in case you&#8217;re looking for the same thing:</p>
<p>First, the iFrame&#8230;</p>

<div class="wp_syntax"><div class="code"><pre class="html" style="font-family:monospace;">&lt;iframe src=&quot;Page1.htm&quot; id=&quot;MyFrame&quot; 
frameborder=&quot;0&quot; marginheight=&quot;0&quot; marginwidth=&quot;0&quot; 
width=&quot;800px&quot; height=&quot;100px&quot; scrolling=&quot;no&quot;&gt;&lt;/iframe&gt;</pre></div></div>

<p>Next, the JavaScript to resize it&#8230;</p>

<div class="wp_syntax"><div class="code"><pre class="javascript" style="font-family:monospace;"><span style="color: #339933;">&lt;</span>script type<span style="color: #339933;">=</span><span style="color: #3366CC;">&quot;text/javascript&quot;</span><span style="color: #339933;">&gt;</span>
&nbsp;
     <span style="color: #003366; font-weight: bold;">function</span> sizeFrame<span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span> <span style="color: #009900;">&#123;</span>
          jQuery<span style="color: #009900;">&#40;</span><span style="color: #3366CC;">&quot;#MyFrame&quot;</span><span style="color: #339933;">,</span> top.<span style="color: #660066;">document</span><span style="color: #009900;">&#41;</span>.<span style="color: #660066;">css</span><span style="color: #009900;">&#40;</span><span style="color: #009900;">&#123;</span> height<span style="color: #339933;">:</span> <span style="color: #CC0000;">0</span> <span style="color: #009900;">&#125;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
          <span style="color: #003366; font-weight: bold;">var</span> heightDiv <span style="color: #339933;">=</span> jQuery<span style="color: #009900;">&#40;</span><span style="color: #3366CC;">&quot;#MyFrame&quot;</span><span style="color: #339933;">,</span> top.<span style="color: #660066;">document</span><span style="color: #009900;">&#41;</span>.<span style="color: #660066;">contents</span><span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span>.<span style="color: #660066;">find</span><span style="color: #009900;">&#40;</span><span style="color: #3366CC;">'body'</span><span style="color: #009900;">&#41;</span>.<span style="color: #660066;">attr</span><span style="color: #009900;">&#40;</span><span style="color: #3366CC;">'scrollHeight'</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
          jQuery<span style="color: #009900;">&#40;</span><span style="color: #3366CC;">&quot;#MyFrame&quot;</span><span style="color: #339933;">,</span> top.<span style="color: #660066;">document</span><span style="color: #009900;">&#41;</span>.<span style="color: #660066;">css</span><span style="color: #009900;">&#40;</span><span style="color: #009900;">&#123;</span> height<span style="color: #339933;">:</span> heightDiv <span style="color: #009900;">&#125;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
     <span style="color: #009900;">&#125;</span>
&nbsp;
     jQuery<span style="color: #009900;">&#40;</span><span style="color: #003366; font-weight: bold;">function</span><span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span> <span style="color: #009900;">&#123;</span>
          sizeFrame<span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
          jQuery<span style="color: #009900;">&#40;</span><span style="color: #3366CC;">&quot;#MyFrame&quot;</span><span style="color: #009900;">&#41;</span>.<span style="color: #660066;">load</span><span style="color: #009900;">&#40;</span>sizeFrame<span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>            
     <span style="color: #009900;">&#125;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
&nbsp;
<span style="color: #339933;">&lt;/</span>script<span style="color: #339933;">&gt;</span></pre></div></div>

<p>This line is needed to initially initialize the height so that it works in Safari and Chrome.  Without this line the window will never shrink to fit smaller content, it will just retain the last biggest height.</p>

<div class="wp_syntax"><div class="code"><pre class="javascript" style="font-family:monospace;">jQuery<span style="color: #009900;">&#40;</span><span style="color: #3366CC;">&quot;#MyFrame&quot;</span><span style="color: #339933;">,</span> top.<span style="color: #660066;">document</span><span style="color: #009900;">&#41;</span>.<span style="color: #660066;">css</span><span style="color: #009900;">&#40;</span><span style="color: #009900;">&#123;</span> height<span style="color: #339933;">:</span> <span style="color: #CC0000;">0</span> <span style="color: #009900;">&#125;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span></pre></div></div>

]]></content:encoded>
			<wfw:commentRss>http://www.donkitchen.com/2009/07/08/dynamically-re-size-an-iframes-height-across-browsers/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Visual Studio 2008 is a piece of shit!</title>
		<link>http://www.donkitchen.com/2009/07/03/visual-studio-2008-is-a-piece-of-shit/</link>
		<comments>http://www.donkitchen.com/2009/07/03/visual-studio-2008-is-a-piece-of-shit/#comments</comments>
		<pubDate>Fri, 03 Jul 2009 16:01:23 +0000</pubDate>
		<dc:creator>Don</dc:creator>
				<category><![CDATA[programming]]></category>
		<category><![CDATA[software]]></category>
		<category><![CDATA[wtf]]></category>

		<guid isPermaLink="false">http://www.donkitchen.com/?p=299</guid>
		<description><![CDATA[It&#8217;s been one of those weeks It should be noted that I was able to take a screen shot, upload it to WordPress and make this blog post before that message went away and I was able to interact with Visual Studio.NET again!]]></description>
			<content:encoded><![CDATA[<p><strong>It&#8217;s been one of those weeks <img src='http://www.donkitchen.com/wp-includes/images/smilies/icon_sad.gif' alt=':(' class='wp-smiley' /><br />
</strong></p>
<p style="text-align: center;"><img class="size-full wp-image-298 aligncenter" title="visual-studio-wait" src="http://www.donkitchen.com/wp-content/uploads/2009/07/visual-studio-wait.png" alt="visual-studio-wait" width="589" height="185" /></p>
<p style="text-align: center;">
<p style="text-align: left;"><span style="color: #ff0000;"><em><strong>It should be noted that I was able to take a screen shot, upload it to WordPress and make this blog post before that message went away and I was able to interact with Visual Studio.NET again!</strong></em></span></p>
]]></content:encoded>
			<wfw:commentRss>http://www.donkitchen.com/2009/07/03/visual-studio-2008-is-a-piece-of-shit/feed/</wfw:commentRss>
		<slash:comments>5</slash:comments>
		</item>
		<item>
		<title>July 2009 Baltimore SQL Server Users Group Meeting</title>
		<link>http://www.donkitchen.com/2009/07/02/july-2009-baltimore-sql-server-users-group-meeting/</link>
		<comments>http://www.donkitchen.com/2009/07/02/july-2009-baltimore-sql-server-users-group-meeting/#comments</comments>
		<pubDate>Thu, 02 Jul 2009 12:13:30 +0000</pubDate>
		<dc:creator>Don</dc:creator>
				<category><![CDATA[sql server]]></category>
		<category><![CDATA[user groups]]></category>

		<guid isPermaLink="false">http://www.donkitchen.com/?p=295</guid>
		<description><![CDATA[Passing along the Baltimore SQL Server Users Group July 2009 Meeting Announcement.  I&#8217;m considering attending since we use Reporting Services and SQL Server 2008 here at work.  Here&#8217;s the information in case you may be interested in attending.  Don&#8217;t forget to RSVP via email as noted below. General Meeting Information Date: Monday, July 6, 2009 [...]]]></description>
			<content:encoded><![CDATA[<p>Passing along the Baltimore SQL  			Server Users Group July 2009 Meeting Announcement.  I&#8217;m considering attending since we use Reporting Services and SQL Server 2008 here at work.  Here&#8217;s the information in case you may be interested in attending.  Don&#8217;t forget to RSVP via email as noted below.</p>
<p><strong>General Meeting Information</strong></p>
<ul>
<li>Date: Monday, July 6, 2009</li>
<li>Time: 7:00 PM</li>
<li>Location:  <a href="http://rs6.net/tn.jsp?et=1102627086518&amp;s=281&amp;e=0018QRC8Rze162oD8E1bJvEdaCXHGXsrncLaPGCducpNGu3M0NKd1sU71QXDKE-KR9sUugQiUNquKPd_XP7OoAnEpwYxuGMZp4j5XHq4i3o99Wy2WvcRkoLXA==" target="_blank"> Merkle</a> located at 7001  				Columbia Gateway Drive, Columbia, MD 21046</li>
<li>Directions: Visit this 				<a href="http://rs6.net/tn.jsp?et=1102627086518&amp;s=281&amp;e=0018QRC8Rze163JSSoLGhaPihsPZVrtNc7h_vZ2k3bWEPQp6TzenJdeUPnKRLb_Vp6lLyRzaPCZEIWHpHe8PBUjOaOWYTew4XrOuefk33wz9vH24i9Q-EOBTebVtBXXZIidviYBRyeeJ950pJ9Lj_G-J8E92WdtvNzBu74AlUicjyoU6UR-F-wF5l0nr2zw4ptmY4IYvWzztbNoKX6yfWYdbvvQvd7nRWxeCGklpxQHPjBEtYt2ZmoNSg==" target="_blank"> MapQuest link for directions</a></li>
<li>RSVP: Please email  				Ray Barley (<a href="mailto:raymondbarley@gmail.com" target="_blank">raymondbarley@gmail.com</a>)  				if you are attending so we can plan appropriately</li>
<li>Web site: 				<a href="http://rs6.net/tn.jsp?et=1102627086518&amp;s=281&amp;e=0018QRC8Rze162Muiyf0Dun2p7hQPPggjyShYd56TwI_OL2bilXzmoBLnpO2epbwQOio1ETFJXpyn0_8XUteSxKxoqGeDUcxmXN3i1iiQ_Z5pI=" target="_blank">http://www.bssug.org/</a></li>
</ul>
<p><strong>Presentation Information</strong></p>
<ul>
<li>Title: SQL Server Reporting Services Report Builder 2.0</li>
<li>Speaker: Craig Guyer of Microsoft</li>
<li>Abstract: Authoring reports for SQL Server Reporting Services is even easier than before using the new stand-alone application Report Builder 2.0 (RB2). In this session we will walk through creating some basic reports, show how RB2 fits in with other report authoring applications, and discuss other new report authoring features in SQL Server 2008.</li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://www.donkitchen.com/2009/07/02/july-2009-baltimore-sql-server-users-group-meeting/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>MS Reporting Services Report Viewer Control printing errors with IE8 and Vista</title>
		<link>http://www.donkitchen.com/2009/05/29/ms-reporting-services-report-viewer-control-printing-errors-with-ie8-and-vista/</link>
		<comments>http://www.donkitchen.com/2009/05/29/ms-reporting-services-report-viewer-control-printing-errors-with-ie8-and-vista/#comments</comments>
		<pubDate>Fri, 29 May 2009 18:37:30 +0000</pubDate>
		<dc:creator>Don</dc:creator>
				<category><![CDATA[programming]]></category>
		<category><![CDATA[sql server]]></category>
		<category><![CDATA[windows]]></category>
		<category><![CDATA[IE8]]></category>
		<category><![CDATA[Internet Explorer]]></category>
		<category><![CDATA[report viewer]]></category>
		<category><![CDATA[Reporting Services]]></category>
		<category><![CDATA[Vista]]></category>

		<guid isPermaLink="false">http://www.donkitchen.com/?p=258</guid>
		<description><![CDATA[We use SQL Server 2008&#8242;s Reporting Services for all of our site&#8217;s reports here at work.  Along with that we also use Microsoft&#8217;s Report Viewer control which gives you the ability to serve up the RDL files that are stored in SQL Server.  One of the features that the control offers is the ability to [...]]]></description>
			<content:encoded><![CDATA[<p>We use SQL Server 2008&#8242;s Reporting Services for all of our site&#8217;s reports here at work.  Along with that we also use Microsoft&#8217;s Report Viewer control which gives you the ability to serve up the RDL files that are stored in SQL Server.  One of the features that the control offers is the ability to print your reports.  To accomplsih this it uses Active-X, which we all know can be funky and a hassle to troubleshoot when it&#8217;s not working properly.</p>
<p>When we released our new system back in February we got most of our users printing with minimal support.  We encouraged all of them to upgrade to IE 7 (many were still using IE6) which did fine with the control.  Shortly after our launch Microsoft started rolling out IE8 and our users slowly started upgrading.</p>
<p>That&#8217;s when we found many of them having issues printing.  As you&#8217;ll see in this screen shot, they would simply get a generic error when clicking the print button, even after successfully installing the print control.  As a work around we were having folks export to PDF and then print from there.  Obviously this wasn&#8217;t an ideal solution and we started troubleshooting to figure out what the problem was.</p>
<p style="text-align: center;"><img class="size-full wp-image-260 aligncenter" title="rs-report-error" src="http://www.donkitchen.com/wp-content/uploads/2009/05/rs-report-error.png" alt="rs-report-error" width="585" height="345" /></p>
<p>After doing some testing on our end on virtual machines we were able to reproduce the problem and narrowed it down to Windows Vista running IE8.  Since we weren&#8217;t able to resolve the problem on our virtual machine configuration with anything we tried we eventually opened a support ticket with Microsoft.</p>
<p>After some support calls with Microsoft they informed us that in order for this to work properly you have to add the site that&#8217;s using the report viewer control as a trusted site if you&#8217;re using Internet Explorer 8 and Windows Vista. We thought this was odd because we definitely had tried this on our virtual machine setup and didn&#8217;t have any luck.</p>
<p>What we found out on our own later was that as that this solution does not seem to help if you originally started out with a Beta or RC (Release Candidate) copy of IE8 that had been upgraded to the final release.  That was the scenario we had on our virtual machine that we were using to test IE8 and even the trusted site fix didn&#8217;t help in that scenario.</p>
<p>So, if you are having this problem and you&#8217;re using a clean install of IE8 or an upgrade to the final release of IE8 from a previous version adding the trusted site to fix this problem is easy.</p>
<p>Just open up IE and click <strong>Tools &gt; Internet Options</strong> and follow the steps shown here in the screen shot to add your site as a trusted site:</p>
<p style="text-align: center;"><img class="size-full wp-image-269 aligncenter" title="trusted-sites" src="http://www.donkitchen.com/wp-content/uploads/2009/05/trusted-sites.png" alt="trusted-sites" width="451" height="579" /></p>
<p>Restart your browser and you&#8217;re in business.</p>
<p>Now if they could only get away from Active-X so our users that decide not to use IE can print.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.donkitchen.com/2009/05/29/ms-reporting-services-report-viewer-control-printing-errors-with-ie8-and-vista/feed/</wfw:commentRss>
		<slash:comments>9</slash:comments>
		</item>
		<item>
		<title>Baltimore SQL Server Users Group 5/4</title>
		<link>http://www.donkitchen.com/2009/04/23/baltimore-sql-server-users-group-54/</link>
		<comments>http://www.donkitchen.com/2009/04/23/baltimore-sql-server-users-group-54/#comments</comments>
		<pubDate>Thu, 23 Apr 2009 14:27:16 +0000</pubDate>
		<dc:creator>Don</dc:creator>
				<category><![CDATA[user groups]]></category>
		<category><![CDATA[sql server]]></category>
		<category><![CDATA[user group]]></category>

		<guid isPermaLink="false">http://www.donkitchen.com/2009/04/23/baltimore-sql-server-users-group-54/</guid>
		<description><![CDATA[Last night at the Frederick .NET user group Jeremy Kadlec of Edgewood Solutions (one of the founders of the Baltimore SQL Server Users group, was a speaker.&#160; I didn’t realize that this group met so close to where I work here in Columbia.&#160; After checking out the website I was excited to learn that they [...]]]></description>
			<content:encoded><![CDATA[<p>Last night at the <a href="http://frednug.org/" target="_blank">Frederick .NET user group</a> Jeremy Kadlec of <a href="http://edgewoodsolutions.com/" target="_blank">Edgewood Solutions</a> (one of the founders of the <a href="http://bssug.org" target="_blank">Baltimore SQL Server Users group</a>, was a speaker.&#160; I didn’t realize that this group <a href="http://www.mapquest.com/maps?city=Columbia&amp;state=MD&amp;address=7001+Columbia+Gateway+Drive+&amp;zipcode=21046" target="_blank">met</a> so close to where I work here in Columbia.&#160; After checking out the website I was excited to learn that they met on the first Monday of the month.&#160; Tuesdays and Thursdays, which seem to be popular days for most of the other user groups in the area are not an option for me since I handle the kids those nights while my wife tutors.</p>
<p>So, I’ll be checking out the group for the first time on Monday May 4th.</p>
<blockquote><p><strong><u>Presenter:</u> </strong>Jack Richins of Microsoft</p>
<p><strong><u>Title</u></strong> &#8211; SQL Server 2008 Security</p>
<p><strong><u>Abstract</u></strong> &#8211; SQL Server 2008 introduced three new security features – Transparent Data Encryption, Enterprise Key Management, and SQL Audit. With increased concerns about privacy and data thefts, security remains a “must have” business feature even with constrained budgets. Come learn how to use these features to better secure your database applications and met business compliance regulations. </p>
<p>Learn how to:     <br />* Protect your data at rest      <br />* Use 3rd party key management systems to encrypt data in SQL Server with keys stored outside of SQL Server      <br />* Keep an audit record of access to sensitive data without tanking your performance</p>
</blockquote>
<p>Learn more about their meeting schedule <a href="http://bssug.org/aboutus.aspx" target="_blank">here</a>.&#160; If you’re in the area and are interested in the topic, stop by!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.donkitchen.com/2009/04/23/baltimore-sql-server-users-group-54/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Going for MCTS certification on Visual Studio 2008</title>
		<link>http://www.donkitchen.com/2009/04/23/going-for-mcts-certification-on-visual-studio-2008/</link>
		<comments>http://www.donkitchen.com/2009/04/23/going-for-mcts-certification-on-visual-studio-2008/#comments</comments>
		<pubDate>Thu, 23 Apr 2009 14:05:09 +0000</pubDate>
		<dc:creator>Don</dc:creator>
				<category><![CDATA[.net]]></category>
		<category><![CDATA[Certification]]></category>
		<category><![CDATA[programming]]></category>
		<category><![CDATA[Microsoft]]></category>

		<guid isPermaLink="false">http://www.donkitchen.com/?p=242</guid>
		<description><![CDATA[I have been dragging my feet for the past few years in regards to finishing up my Microsoft development certification.  Actually, the last test I took was 70-229 Designing and Implementing Databases with Microsoft SQL Server 2000 Enterprise Edition back on Dec 08, 2003.  WOW, I had no idea it was that long until I [...]]]></description>
			<content:encoded><![CDATA[<p>I have been dragging my feet for the past few years in regards to finishing up my Microsoft development certification.  Actually, the last test I took was 70-229 Designing and Implementing Databases with Microsoft SQL Server 2000 Enterprise Edition back on Dec 08, 2003.  WOW, I had no idea it was that long until I just looked it up.</p>
<p>Anyway, what finally got me to get moving was a great voucer/coupon I got via email from Prometric, the testing company I used last time.  Not sure if it&#8217;s specific to me because I&#8217;m already a MCP (yes, I passed that test from years ago) or not but I&#8217;ll share it just in case it does work for others&#8230;</p>
<blockquote><p><strong>&#8230;Improving and validating your technical skills can help.</strong></p>
<p>That is why Prometric is providing a limited offer to the first 4,000 individuals to help get your Microsoft Certified Professional status current or achieve an additional certification.</p>
<p><strong>Offer available for customers who have taken their last certification exam prior to January 1, 2007.</strong></p>
<p>Use this promo code <strong>&#8216;MCPBACK&#8217;</strong> and get a $25 USD Certification (Normally priced at $125 USD). This offer is valid for any exam in the <a href="http://click.bsftransmit1.com/ClickThru.aspx?pubids=R5usqIyLMOgC3whW15JHLLRZW5%2f0kBg6ef8MAQ7%2fOT8%3d&amp;digest=lvih%2fz1vs6megSpLoo%2f63g" target="_blank">MCTS/MCPD/MCITP track.</a> Does not include Microsoft Office or Windows end-user (non-IT) focused exams.</p>
<p>Go to: <a href="http://click.bsftransmit1.com/ClickThru.aspx?pubids=eJ6QdXCYIPlbEdeTste7jKiJ9lQVnCJMmWSBlw%2bvHxs%3d&amp;digest=AU2%2f13%2fhdc3E81cM5Xbllw" target="_blank">www.Prometric.com/microsoft</a> to sign-up for your next exam.</p>
<p><strong>But you better hurry!</strong><br />
<strong>You must take your exam by June 30, 2009.</strong></p>
<p>Offer valid in  US and Canada only.</p></blockquote>
<p>My plan is to obtain the <a href="http://www.microsoft.com/learning/mcp/mcts/vstudio/2008/default.mspx" target="_blank">MCTS: .NET Framework 3.5, ASP.NET Applications </a>certification related to Visual Studio 2008.  What I&#8217;m going to do is take the C# test rather than VB.NET, which is what I mainly use here at work.  I can work in C# and have written a <a href="http://www.donkitchen.com/category/software/cmd-email-software/">few things</a> in it, but my main language since I&#8217;ve been working in .NET has been VB.NET.</p>
<p>I figure this will be a good way to become more familiar with C# and will force me to learn the language.  Once you&#8217;ve been working with .NET for a while and looking through code samples on Google you&#8217;ll quickly realize that the majority of the code samples out there are done in C#.  So, as you can imagine, converting those to VB.NET can be frustrating after a while.</p>
<p>So, we&#8217;ll see how it goes.  I only spent $25 to book the test and another $44 to upgrade my copy of <a href="http://www.amazon.com/gp/product/0735626197?ie=UTF8&amp;tag=donkitchencom-20&amp;linkCode=as2&amp;camp=1789&amp;creative=390957&amp;creativeASIN=0735626197">MCTS Self-Paced Training Kit (Exam 70-536): Microsoft® .NET Framework Application Development Foundation</a><img style="border:none !important; margin:0px !important;" src="http://www.assoc-amazon.com/e/ir?t=donkitchencom-20&amp;l=as2&amp;o=1&amp;a=0735626197" border="0" alt="" width="1" height="1" /> to the second edition.  I picked up the first edition a year or two ago when I first decided I wanted to get the MCTS and only got about 1/2 way through it.</p>
<p>My test is set for June 17, wish me luck!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.donkitchen.com/2009/04/23/going-for-mcts-certification-on-visual-studio-2008/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>FredNUG tonight</title>
		<link>http://www.donkitchen.com/2009/04/22/frednug-tonight/</link>
		<comments>http://www.donkitchen.com/2009/04/22/frednug-tonight/#comments</comments>
		<pubDate>Wed, 22 Apr 2009 12:28:46 +0000</pubDate>
		<dc:creator>Don</dc:creator>
				<category><![CDATA[.net]]></category>
		<category><![CDATA[FredNug]]></category>
		<category><![CDATA[programming]]></category>
		<category><![CDATA[user group]]></category>

		<guid isPermaLink="false">http://www.donkitchen.com/2009/04/22/frednug-tonight/</guid>
		<description><![CDATA[I’ll be attending the Frederick .NET user group tonight.&#160; Tonight’s topics will be SQL Server Performance and Coding for Fun and Profit.&#160; More information can be found here.]]></description>
			<content:encoded><![CDATA[<p>I’ll be attending the Frederick .NET user group tonight.&#160; Tonight’s topics will be <em>SQL Server Performance</em> and <em>Coding for Fun and Profit</em>.&#160; More information can be found <a href="http://frednug.org/?page_id=62" target="_blank">here</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.donkitchen.com/2009/04/22/frednug-tonight/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
