<?xml version="1.0" encoding="iso-8859-1"?>
<rss version="2.0" 
    xmlns:dc="http://purl.org/dc/elements/1.1/"
    xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
    xmlns:admin="http://webns.net/mvcb/"
    xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
    xmlns:content="http://purl.org/rss/1.0/modules/content/">
  <channel>
    <title>kblogs-LifeChecker.com</title>
    <link>http://www.lifechecker.com/blog2/</link>
    <description>kblogs-LifeChecker.com</description>
    <pubDate>Sat, 06 Jan 2007 23:59:40 -0600</pubDate>
    <lastBuildDate>Sat, 06 Jan 2007 23:59:40 -0600</lastBuildDate>
    <docs>http://blogs.law.harvard.edu/tech/rss</docs> 
    <generator>phpblogger</generator>     
<item>
  <title>Save Button Dialog Box</title>
  <link>http://www.lifechecker.com/blog2/?action=entry&amp;id=1168149580</link>
  <description><![CDATA[The main thing about the folling code is that is used a dialog box to save a file.  This is an essential element for most applications.&lt;br/&gt;&lt;br/&gt;Private Sub btnSave_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles btnSave.Click&lt;br/&gt;        'Bring up file save dialog&lt;br/&gt;        Dim dlgSave As New SaveFileDialog&lt;br/&gt;dlgSave.Filter = 'Image files (*.bmp)|*.bmp|All files (*.*)|*.*'&lt;br/&gt;        If dlgSave.ShowDialog() = DialogResult.OK Then&lt;br/&gt;		'makebitmap and save it&lt;br/&gt;            Dim bmpArea As Bitmap = bitmap.Clone(New Rectangle&lt;br/&gt;            (0, 0, Me.Width, Me.Height), bitmap.PixelFormat)&lt;br/&gt;            bmpArea.Save(dlgSave.FileName, ImageFormat.Bmp)&lt;br/&gt;        End If&lt;br/&gt;    End Sub]]></description>
  <pubDate>Sat, 06 Jan 2007 23:59:40 -0600</pubDate>
  <author><![CDATA[DeanKeith]]></author>
  <guid>1168149580</guid>
</item>
<item>
  <title>Patterns</title>
  <link>http://www.lifechecker.com/blog2/?action=entry&amp;id=1137737805</link>
  <description><![CDATA[It may be an outmoded form of document validation, however, the DOCTYPE definition for an XML document permits almost pivot table like analysis of data.  &lt;br/&gt;&lt;br/&gt;Defining the Elements and Attributes using the &lt;!ELEMENT declaration and the &lt;!ATTLIST declaration is the starting point for a DTD.  In addition, to understand the trends in modern data manipulation requires a thorough grasp of concepts such as schemas, DTD, and data islands.&lt;br/&gt;&lt;br/&gt;]]></description>
  <pubDate>Fri, 20 Jan 2006 00:16:45 -0600</pubDate>
  <author><![CDATA[DeanKeith]]></author>
  <guid>1137737805</guid>
</item>
<item>
  <title>Blooming Database Features</title>
  <link>http://www.lifechecker.com/blog2/?action=entry&amp;id=1132538579</link>
  <description><![CDATA[SQL Server 2005 New Features&lt;br/&gt;&lt;br/&gt;Ranking Functions:&lt;br/&gt;&lt;br/&gt;Rank()&lt;br/&gt;Dense_Rank()&lt;br/&gt;NTile()&lt;br/&gt;Row_Number()&lt;br/&gt;&lt;br/&gt;Each of these uses the OVER Clause to set up the query.&lt;br/&gt;&lt;br/&gt;The coolest of these in my opinion is the NTILE function as it &lt;br/&gt;will divide up a result set into value bands producing an auto-&lt;br/&gt;matic set of categories.  In the sample below 4 price ranges would&lt;br/&gt;be created.  &lt;br/&gt;&lt;br/&gt;SELECT NTILE(4) OVER(Partition BY PRODUCT.NAME ORDER BY PRICE) as &lt;br/&gt;PRICERANGE, PRODUCT.NAME, PRICE&lt;br/&gt;FROM PRODUCT]]></description>
  <pubDate>Sun, 20 Nov 2005 20:02:59 -0600</pubDate>
  <author><![CDATA[DeanKeith]]></author>
  <guid>1132538579</guid>
</item>
<item>
  <title>WSH - Add Users Script</title>
  <link>http://www.lifechecker.com/blog2/?action=entry&amp;id=1131996793</link>
  <description><![CDATA[Option Explicit&lt;br/&gt;Dim objou, objUser&lt;br/&gt;Set objOU = GetObject('LDAP://ou=Marketing,dc=mydomain,dc=com')&lt;br/&gt;Set objUser = objOU.Create('User', 'cn=EOsterman')&lt;br/&gt;objUser.Put 'sAMAccountName', 'Eosterman'&lt;br/&gt;objUser.SetInfo&lt;br/&gt;&lt;br/&gt;&lt;br/&gt;This adds a user to AD.  The account is created with a blank password and disabled.  ]]></description>
  <pubDate>Mon, 14 Nov 2005 13:33:13 -0600</pubDate>
  <author><![CDATA[DeanKeith]]></author>
  <guid>1131996793</guid>
</item>
<item>
  <title>Take Off -  The Blog for Little Guys Reaching Up</title>
  <link>http://www.lifechecker.com/blog2/?action=entry&amp;id=1129094508</link>
  <description><![CDATA[This is the starting place, the launching place of the LifeChecker Tech Blog.  We will look at code, at group policy, at some Linux and at some trends in technology.  Hopefully you will get some ADO.NET connection strings, some Timer code as well as some guidelines on how to implement security in your organization.  I am sure we will do some router configs as well.  Hold onto your seat for a first class flight.   So ---- Welcome.  &lt;p&gt;
]]></description>
  <pubDate>Wed, 12 Oct 2005 00:21:48 -0500</pubDate>
  <author><![CDATA[DeanKeith]]></author>
  <guid>1129094508</guid>
</item>
    
  </channel>
</rss>