<?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>Kelsoe Services &#187; Microsoft Office</title>
	<atom:link href="http://kelsoe.com/category/microsoft-office/feed/" rel="self" type="application/rss+xml" />
	<link>http://kelsoe.com</link>
	<description>Computer Consulting, Software Development, and IT Services</description>
	<lastBuildDate>Fri, 28 Oct 2011 18:33:57 +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>Function to get logged in user name</title>
		<link>http://kelsoe.com/function-to-get-logged-in-user-name/</link>
		<comments>http://kelsoe.com/function-to-get-logged-in-user-name/#comments</comments>
		<pubDate>Fri, 28 Oct 2011 16:26:43 +0000</pubDate>
		<dc:creator>charles</dc:creator>
				<category><![CDATA[Excel]]></category>
		<category><![CDATA[VBA]]></category>

		<guid isPermaLink="false">http://kelsoe.com/function-to-get-logged-in-user-name/</guid>
		<description><![CDATA[This code is from Charles Maxson’s blog (http://blogs.officezealot.com/charles/archive/2004/12/10/3574.aspx) and is posted here for my reference. Excel VBA: Function to get logged in user name (plus the Environ Function) One commonly asked task is how can you get the name of the current user of an Excel spreadsheet into a cell in the spreadsheet. A lot [...]]]></description>
			<content:encoded><![CDATA[<p>This code is from Charles Maxson’s blog (<a href="http://blogs.officezealot.com/charles/archive/2004/12/10/3574.aspx">http://blogs.officezealot.com/charles/archive/2004/12/10/3574.aspx</a>) and is posted here for my reference.</p>
<h4>Excel VBA: Function to get logged in user name (plus the Environ Function)</h4>
<p>One commonly asked task is how can you get the name of the current user of an Excel spreadsheet into a cell in the spreadsheet. A lot of people quickly stumble across the UserName property in VBA and create a function similar to this:</p>
<pre style="background-color: #fbfbfb; margin: 0em; width: 100%; font-family: consolas,'Courier New',courier,monospace; font-size: 12px;"><span style="color: #0000ff;">Function</span> UserNameOffice() <span style="color: #0000ff;">As</span> <span style="color: #0000ff;">String</span></pre>
<pre style="background-color: #ffffff; margin: 0em; width: 100%; font-family: consolas,'Courier New',courier,monospace; font-size: 12px;">     UserNameOffice = Application.UserName</pre>
<pre style="background-color: #fbfbfb; margin: 0em; width: 100%; font-family: consolas,'Courier New',courier,monospace; font-size: 12px;"><span style="color: #0000ff;">End</span> <span style="color: #0000ff;">Function</span></pre>
<p>But as you know, that only returns the name of the user according to the registration information of Office. A lot of companies set that at something generic like “User”or “Registered Owner”. That&#8217;s not what you really want though right? You really want the user&#8217;s name based on their Windows login. How do you get that ?&#8230;. well it&#8217;s a little complicated with an API call from VBA as shown here is below:</p>
<pre style="background-color: #fbfbfb; margin: 0em; width: 100%; font-family: consolas,'Courier New',courier,monospace; font-size: 12px;"><span style="color: #0000ff;">Private</span> <span style="color: #0000ff;">Declare</span> <span style="color: #0000ff;">Function</span> GetUserName <span style="color: #0000ff;">Lib</span> "<span style="color: #8b0000;">advapi32.dll</span>" <span style="color: #0000ff;">Alias</span> "<span style="color: #8b0000;">GetUserNameA</span>"(<span style="color: #0000ff;">ByVal</span> lpBuffer <span style="color: #0000ff;">As</span> <span style="color: #0000ff;">String</span>, nSize <span style="color: #0000ff;">As</span> <span style="color: #0000ff;">Long</span>) <span style="color: #0000ff;">As</span> <span style="color: #0000ff;">Long</span></pre>
<pre style="background-color: #ffffff; margin: 0em; width: 100%; font-family: consolas,'Courier New',courier,monospace; font-size: 12px;"></pre>
<pre style="background-color: #fbfbfb; margin: 0em; width: 100%; font-family: consolas,'Courier New',courier,monospace; font-size: 12px;"><span style="color: #0000ff;">Function</span> UserNameWindows() <span style="color: #0000ff;">As</span> <span style="color: #0000ff;">String</span></pre>
<pre style="background-color: #ffffff; margin: 0em; width: 100%; font-family: consolas,'Courier New',courier,monospace; font-size: 12px;">    <span style="color: #0000ff;">Dim</span> lngLen <span style="color: #0000ff;">As</span> <span style="color: #0000ff;">Long</span></pre>
<pre style="background-color: #fbfbfb; margin: 0em; width: 100%; font-family: consolas,'Courier New',courier,monospace; font-size: 12px;">    <span style="color: #0000ff;">Dim</span> strBuffer <span style="color: #0000ff;">As</span> <span style="color: #0000ff;">String</span></pre>
<pre style="background-color: #ffffff; margin: 0em; width: 100%; font-family: consolas,'Courier New',courier,monospace; font-size: 12px;">    <span style="color: #0000ff;">Const</span> dhcMaxUserName = 255</pre>
<pre style="background-color: #fbfbfb; margin: 0em; width: 100%; font-family: consolas,'Courier New',courier,monospace; font-size: 12px;">    strBuffer = Space(dhcMaxUserName)</pre>
<pre style="background-color: #ffffff; margin: 0em; width: 100%; font-family: consolas,'Courier New',courier,monospace; font-size: 12px;">    lngLen = dhcMaxUserName</pre>
<pre style="background-color: #fbfbfb; margin: 0em; width: 100%; font-family: consolas,'Courier New',courier,monospace; font-size: 12px;">    <span style="color: #0000ff;">If</span> <span style="color: #0000ff;">CBool</span>(GetUserName(strBuffer, lngLen)) <span style="color: #0000ff;">Then</span></pre>
<pre style="background-color: #ffffff; margin: 0em; width: 100%; font-family: consolas,'Courier New',courier,monospace; font-size: 12px;">        UserNameWindows = Left$(strBuffer, lngLen - 1)</pre>
<pre style="background-color: #fbfbfb; margin: 0em; width: 100%; font-family: consolas,'Courier New',courier,monospace; font-size: 12px;">    <span style="color: #0000ff;">Else</span></pre>
<pre style="background-color: #ffffff; margin: 0em; width: 100%; font-family: consolas,'Courier New',courier,monospace; font-size: 12px;">        UserNameWindows = ""</pre>
<pre style="background-color: #fbfbfb; margin: 0em; width: 100%; font-family: consolas,'Courier New',courier,monospace; font-size: 12px;">    <span style="color: #0000ff;">End</span> <span style="color: #0000ff;">If</span></pre>
<pre style="background-color: #ffffff; margin: 0em; width: 100%; font-family: consolas,'Courier New',courier,monospace; font-size: 12px;"><span style="color: #0000ff;">End</span> <span style="color: #0000ff;">Function</span></pre>
<p>Then all you have to do in the cell of choice is enter the formula:</p>
<pre style="background-color: #fbfbfb; margin: 0em; width: 100%; font-family: consolas,'Courier New',courier,monospace; font-size: 12px;">=UserNameWindows()</pre>
<p>But as *Mike* reminded me in a comment on my original post (this is the updated version)&#8230;.</p>
<p>There is the Environ Function in VBA that makes this a walk in the park without the API hassles:</p>
<pre style="background-color: #fbfbfb; margin: 0em; width: 100%; font-family: consolas,'Courier New',courier,monospace; font-size: 12px;"><span style="color: #0000ff;">Function</span> UserNameWindows() <span style="color: #0000ff;">As</span> <span style="color: #0000ff;">String</span></pre>
<pre style="background-color: #ffffff; margin: 0em; width: 100%; font-family: consolas,'Courier New',courier,monospace; font-size: 12px;">    UserName = Environ("<span style="color: #8b0000;">USERNAME</span>")</pre>
<pre style="background-color: #fbfbfb; margin: 0em; width: 100%; font-family: consolas,'Courier New',courier,monospace; font-size: 12px;"><span style="color: #0000ff;">End</span> <span style="color: #0000ff;">Function</span></pre>
<p>Thanks *Mike* for bringing that up&#8230;.</p>
<p>I remember using Environ to get the current location of  the “My Documents“ folder for the current user:</p>
<pre style="background-color: #fbfbfb; margin: 0em; width: 100%; font-family: consolas,'Courier New',courier,monospace; font-size: 12px;">MsgBox Environ("<span style="color: #8b0000;">USERPROFILE</span>") + "<span style="color: #8b0000;">\My Documents</span>"</pre>
<p>So having my memory jarred on the Environ function, I thought I would check VBA help to see what else this Little gem provided. And boy, how disappointing Help was&#8230; here is what it looks like: <a href="http://msdn.microsoft.com/library/default.asp?url=/library/en-us/vbenlr98/html/vafctEnviron.asp">Environ Help</a>. Not too useful I thought&#8230; So I decided to figure it out on my own and loop thru all the arguments possible with Environ. Copy and run this little routine to see all that Environ offers:</p>
<pre style="background-color: #fbfbfb; margin: 0em; width: 100%; font-family: consolas,'Courier New',courier,monospace; font-size: 12px;">MsgBox Environ("<span style="color: #8b0000;">USERPROFILE</span>") + "<span style="color: #8b0000;">\My Documents</span>"Public <span style="color: #0000ff;">Sub</span> EnvironFunction()</pre>
<pre style="background-color: #ffffff; margin: 0em; width: 100%; font-family: consolas,'Courier New',courier,monospace; font-size: 12px;">    <span style="color: #0000ff;">Dim</span> nCount <span style="color: #0000ff;">As</span> <span style="color: #0000ff;">Integer</span></pre>
<pre style="background-color: #fbfbfb; margin: 0em; width: 100%; font-family: consolas,'Courier New',courier,monospace; font-size: 12px;">    nCount = nCount + 1</pre>
<pre style="background-color: #ffffff; margin: 0em; width: 100%; font-family: consolas,'Courier New',courier,monospace; font-size: 12px;">    <span style="color: #0000ff;">Do</span> Until Environ(nCount) = ""</pre>
<pre style="background-color: #fbfbfb; margin: 0em; width: 100%; font-family: consolas,'Courier New',courier,monospace; font-size: 12px;">        Debug.Print Environ(nCount)</pre>
<pre style="background-color: #ffffff; margin: 0em; width: 100%; font-family: consolas,'Courier New',courier,monospace; font-size: 12px;">        nCount = nCount + 1</pre>
<pre style="background-color: #fbfbfb; margin: 0em; width: 100%; font-family: consolas,'Courier New',courier,monospace; font-size: 12px;">    <span style="color: #0000ff;">Loop</span></pre>
<pre style="background-color: #ffffff; margin: 0em; width: 100%; font-family: consolas,'Courier New',courier,monospace; font-size: 12px;"><span style="color: #0000ff;">End</span> <span style="color: #0000ff;">Sub</span></pre>
<p>There are lots of useful things in there including APPDATA, COMPUTERNAME, HOMEDRIVE, HOMEPATH, OS, USERDOMAIN and more&#8230; Hopefully you will find it useful and I won&#8217;t forget about it again.</p>
<p>****Nice to see blogging helps you remember what you forgot and that readers often help writers more than the other way around <img src='http://kelsoe.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p>Here&#8217;s a complete list (that I know of) of the named arguments for the Environ Function:</p>
<table style="border-collapse: collapse; width: 199px;" border="0" cellspacing="0" cellpadding="0">
<colgroup>
<col style="width: 149pt; mso-width-source: userset; mso-width-alt: 7277;" width="199" /></colgroup>
<tbody>
<tr style="height: 12.75pt;">
<td class="xl25" style="background-color: transparent; width: 149pt; height: 12.75pt; border-color: #ece9d8;" width="199" height="17"><strong><span style="font-family: Arial; font-size: x-small;">Environ arguments</span></strong></td>
</tr>
<tr style="height: 12.75pt;">
<td class="xl26" style="background-color: silver; height: 12.75pt; border: windowtext 0.5pt solid;" height="17"><span style="font-family: Arial; font-size: x-small;">ALLUSERSPROFILE</span></td>
</tr>
<tr style="height: 12.75pt;">
<td class="xl24" style="border-bottom: windowtext 0.5pt solid; border-left: windowtext 0.5pt solid; background-color: transparent; border-top-color: windowtext; height: 12.75pt; border-right: windowtext 0.5pt solid;" height="17"><span style="font-family: Arial; font-size: x-small;">APPDATA</span></td>
</tr>
<tr style="height: 12.75pt;">
<td class="xl26" style="border-bottom: windowtext 0.5pt solid; border-left: windowtext 0.5pt solid; background-color: silver; border-top-color: windowtext; height: 12.75pt; border-right: windowtext 0.5pt solid;" height="17"><span style="font-family: Arial; font-size: x-small;">AVENGINE</span></td>
</tr>
<tr style="height: 12.75pt;">
<td class="xl24" style="border-bottom: windowtext 0.5pt solid; border-left: windowtext 0.5pt solid; background-color: transparent; border-top-color: windowtext; height: 12.75pt; border-right: windowtext 0.5pt solid;" height="17"><span style="font-family: Arial; font-size: x-small;">CLIENTNAME</span></td>
</tr>
<tr style="height: 12.75pt;">
<td class="xl26" style="border-bottom: windowtext 0.5pt solid; border-left: windowtext 0.5pt solid; background-color: silver; border-top-color: windowtext; height: 12.75pt; border-right: windowtext 0.5pt solid;" height="17"><span style="font-family: Arial; font-size: x-small;">CommonProgramFiles</span></td>
</tr>
<tr style="height: 12.75pt;">
<td class="xl24" style="border-bottom: windowtext 0.5pt solid; border-left: windowtext 0.5pt solid; background-color: transparent; border-top-color: windowtext; height: 12.75pt; border-right: windowtext 0.5pt solid;" height="17"><span style="font-family: Arial; font-size: x-small;">COMPUTERNAME</span></td>
</tr>
<tr style="height: 12.75pt;">
<td class="xl26" style="border-bottom: windowtext 0.5pt solid; border-left: windowtext 0.5pt solid; background-color: silver; border-top-color: windowtext; height: 12.75pt; border-right: windowtext 0.5pt solid;" height="17"><span style="font-family: Arial; font-size: x-small;">ComSpec</span></td>
</tr>
<tr style="height: 12.75pt;">
<td class="xl24" style="border-bottom: windowtext 0.5pt solid; border-left: windowtext 0.5pt solid; background-color: transparent; border-top-color: windowtext; height: 12.75pt; border-right: windowtext 0.5pt solid;" height="17"><span style="font-family: Arial; font-size: x-small;">FP_NO_HOST_CHECK</span></td>
</tr>
<tr style="height: 12.75pt;">
<td class="xl26" style="border-bottom: windowtext 0.5pt solid; border-left: windowtext 0.5pt solid; background-color: silver; border-top-color: windowtext; height: 12.75pt; border-right: windowtext 0.5pt solid;" height="17"><span style="font-family: Arial; font-size: x-small;">HOMEDRIVE</span></td>
</tr>
<tr style="height: 12.75pt;">
<td class="xl24" style="border-bottom: windowtext 0.5pt solid; border-left: windowtext 0.5pt solid; background-color: transparent; border-top-color: windowtext; height: 12.75pt; border-right: windowtext 0.5pt solid;" height="17"><span style="font-family: Arial; font-size: x-small;">HOMEPATH</span></td>
</tr>
<tr style="height: 12.75pt;">
<td class="xl26" style="border-bottom: windowtext 0.5pt solid; border-left: windowtext 0.5pt solid; background-color: silver; border-top-color: windowtext; height: 12.75pt; border-right: windowtext 0.5pt solid;" height="17"><span style="font-family: Arial; font-size: x-small;">INCLUDE</span></td>
</tr>
<tr style="height: 12.75pt;">
<td class="xl24" style="border-bottom: windowtext 0.5pt solid; border-left: windowtext 0.5pt solid; background-color: transparent; border-top-color: windowtext; height: 12.75pt; border-right: windowtext 0.5pt solid;" height="17"><span style="font-family: Arial; font-size: x-small;">INOCULAN</span></td>
</tr>
<tr style="height: 12.75pt;">
<td class="xl26" style="border-bottom: windowtext 0.5pt solid; border-left: windowtext 0.5pt solid; background-color: silver; border-top-color: windowtext; height: 12.75pt; border-right: windowtext 0.5pt solid;" height="17"><span style="font-family: Arial; font-size: x-small;">LIB</span></td>
</tr>
<tr style="height: 12.75pt;">
<td class="xl24" style="border-bottom: windowtext 0.5pt solid; border-left: windowtext 0.5pt solid; background-color: transparent; border-top-color: windowtext; height: 12.75pt; border-right: windowtext 0.5pt solid;" height="17"><span style="font-family: Arial; font-size: x-small;">LOGONSERVER</span></td>
</tr>
<tr style="height: 12.75pt;">
<td class="xl26" style="border-bottom: windowtext 0.5pt solid; border-left: windowtext 0.5pt solid; background-color: silver; border-top-color: windowtext; height: 12.75pt; border-right: windowtext 0.5pt solid;" height="17"><span style="font-family: Arial; font-size: x-small;">NUMBER_OF_PROCESSORS</span></td>
</tr>
<tr style="height: 12.75pt;">
<td class="xl24" style="border-bottom: windowtext 0.5pt solid; border-left: windowtext 0.5pt solid; background-color: transparent; border-top-color: windowtext; height: 12.75pt; border-right: windowtext 0.5pt solid;" height="17"><span style="font-family: Arial; font-size: x-small;">OS</span></td>
</tr>
<tr style="height: 12.75pt;">
<td class="xl26" style="border-bottom: windowtext 0.5pt solid; border-left: windowtext 0.5pt solid; background-color: silver; border-top-color: windowtext; height: 12.75pt; border-right: windowtext 0.5pt solid;" height="17"><span style="font-family: Arial; font-size: x-small;">Path</span></td>
</tr>
<tr style="height: 12.75pt;">
<td class="xl24" style="border-bottom: windowtext 0.5pt solid; border-left: windowtext 0.5pt solid; background-color: transparent; border-top-color: windowtext; height: 12.75pt; border-right: windowtext 0.5pt solid;" height="17"><span style="font-family: Arial; font-size: x-small;">PATHEXT</span></td>
</tr>
<tr style="height: 12.75pt;">
<td class="xl26" style="border-bottom: windowtext 0.5pt solid; border-left: windowtext 0.5pt solid; background-color: silver; border-top-color: windowtext; height: 12.75pt; border-right: windowtext 0.5pt solid;" height="17"><span style="font-family: Arial; font-size: x-small;">PROCESSOR_ARCHITECTURE</span></td>
</tr>
<tr style="height: 12.75pt;">
<td class="xl24" style="border-bottom: windowtext 0.5pt solid; border-left: windowtext 0.5pt solid; background-color: transparent; border-top-color: windowtext; height: 12.75pt; border-right: windowtext 0.5pt solid;" height="17"><span style="font-family: Arial; font-size: x-small;">PROCESSOR_IDENTIFIER</span></td>
</tr>
<tr style="height: 12.75pt;">
<td class="xl26" style="border-bottom: windowtext 0.5pt solid; border-left: windowtext 0.5pt solid; background-color: silver; border-top-color: windowtext; height: 12.75pt; border-right: windowtext 0.5pt solid;" height="17"><span style="font-family: Arial; font-size: x-small;">PROCESSOR_LEVEL</span></td>
</tr>
<tr style="height: 12.75pt;">
<td class="xl24" style="border-bottom: windowtext 0.5pt solid; border-left: windowtext 0.5pt solid; background-color: transparent; border-top-color: windowtext; height: 12.75pt; border-right: windowtext 0.5pt solid;" height="17"><span style="font-family: Arial; font-size: x-small;">PROCESSOR_REVISION</span></td>
</tr>
<tr style="height: 12.75pt;">
<td class="xl26" style="border-bottom: windowtext 0.5pt solid; border-left: windowtext 0.5pt solid; background-color: silver; border-top-color: windowtext; height: 12.75pt; border-right: windowtext 0.5pt solid;" height="17"><span style="font-family: Arial; font-size: x-small;">ProgramFiles</span></td>
</tr>
<tr style="height: 12.75pt;">
<td class="xl24" style="border-bottom: windowtext 0.5pt solid; border-left: windowtext 0.5pt solid; background-color: transparent; border-top-color: windowtext; height: 12.75pt; border-right: windowtext 0.5pt solid;" height="17"><span style="font-family: Arial; font-size: x-small;">SESSIONNAME</span></td>
</tr>
<tr style="height: 12.75pt;">
<td class="xl26" style="border-bottom: windowtext 0.5pt solid; border-left: windowtext 0.5pt solid; background-color: silver; border-top-color: windowtext; height: 12.75pt; border-right: windowtext 0.5pt solid;" height="17"><span style="font-family: Arial; font-size: x-small;">SystemDrive</span></td>
</tr>
<tr style="height: 12.75pt;">
<td class="xl24" style="border-bottom: windowtext 0.5pt solid; border-left: windowtext 0.5pt solid; background-color: transparent; border-top-color: windowtext; height: 12.75pt; border-right: windowtext 0.5pt solid;" height="17"><span style="font-family: Arial; font-size: x-small;">SystemRoot</span></td>
</tr>
<tr style="height: 12.75pt;">
<td class="xl26" style="border-bottom: windowtext 0.5pt solid; border-left: windowtext 0.5pt solid; background-color: silver; border-top-color: windowtext; height: 12.75pt; border-right: windowtext 0.5pt solid;" height="17"><span style="font-family: Arial; font-size: x-small;">TEMP</span></td>
</tr>
<tr style="height: 12.75pt;">
<td class="xl24" style="border-bottom: windowtext 0.5pt solid; border-left: windowtext 0.5pt solid; background-color: transparent; border-top-color: windowtext; height: 12.75pt; border-right: windowtext 0.5pt solid;" height="17"><span style="font-family: Arial; font-size: x-small;">TMP</span></td>
</tr>
<tr style="height: 12.75pt;">
<td class="xl26" style="border-bottom: windowtext 0.5pt solid; border-left: windowtext 0.5pt solid; background-color: silver; border-top-color: windowtext; height: 12.75pt; border-right: windowtext 0.5pt solid;" height="17"><span style="font-family: Arial; font-size: x-small;">USERDOMAIN</span></td>
</tr>
<tr style="height: 12.75pt;">
<td class="xl24" style="border-bottom: windowtext 0.5pt solid; border-left: windowtext 0.5pt solid; background-color: transparent; border-top-color: windowtext; height: 12.75pt; border-right: windowtext 0.5pt solid;" height="17"><span style="font-family: Arial; font-size: x-small;">USERNAME</span></td>
</tr>
<tr style="height: 12.75pt;">
<td class="xl26" style="border-bottom: windowtext 0.5pt solid; border-left: windowtext 0.5pt solid; background-color: silver; border-top-color: windowtext; height: 12.75pt; border-right: windowtext 0.5pt solid;" height="17"><span style="font-family: Arial; font-size: x-small;">USERPROFILE</span></td>
</tr>
<tr style="height: 12.75pt;">
<td class="xl24" style="border-bottom: windowtext 0.5pt solid; border-left: windowtext 0.5pt solid; background-color: transparent; border-top-color: windowtext; height: 12.75pt; border-right: windowtext 0.5pt solid;" height="17"><span style="font-family: Arial; font-size: x-small;">VS71COMNTOOLS</span></td>
</tr>
<tr style="height: 12.75pt;">
<td class="xl26" style="border-bottom: windowtext 0.5pt solid; border-left: windowtext 0.5pt solid; background-color: silver; border-top-color: windowtext; height: 12.75pt; border-right: windowtext 0.5pt solid;" height="17"><span style="font-family: Arial; font-size: x-small;">WecVersionForRosebud.FF0</span></td>
</tr>
<tr style="height: 12.75pt;">
<td class="xl24" style="border-bottom: windowtext 0.5pt solid; border-left: windowtext 0.5pt solid; background-color: transparent; border-top-color: windowtext; height: 12.75pt; border-right: windowtext 0.5pt solid;" height="17"><span style="font-family: Arial; font-size: x-small;">windir</span></td>
</tr>
</tbody>
</table>
]]></content:encoded>
			<wfw:commentRss>http://kelsoe.com/function-to-get-logged-in-user-name/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Powerpoint Backgrounds</title>
		<link>http://kelsoe.com/powerpoint-backgrounds/</link>
		<comments>http://kelsoe.com/powerpoint-backgrounds/#comments</comments>
		<pubDate>Mon, 07 May 2007 20:22:51 +0000</pubDate>
		<dc:creator>charles</dc:creator>
				<category><![CDATA[Microsoft Office]]></category>
		<category><![CDATA[Presentations]]></category>

		<guid isPermaLink="false">http://blog.kelsoe.com/2007/05/07/powerpoint-backgrounds/</guid>
		<description><![CDATA[I use TechSmith&#8217;s SnagIt screen capture utility for all of my screen captures.&#160; Today, I went to their site to see if there was an update and found that they have a nice collection of PowerPoint backgrounds (scroll to near the bottom of the page).]]></description>
			<content:encoded><![CDATA[<p>I use <a href="http://www.techsmith.com/snagit.asp" target="_blank">TechSmith&#8217;s SnagIt</a> screen capture utility for all of my screen c<a href="http://blog.kelsoe.com/files/2007/05/windowslivewriterpowerpointbackgrounds-e64eimage03.png"><img style="border-right:0;border-top:0;border-left:0;border-bottom:0;" height="102" src="http://blog.kelsoe.com/files/2007/05/windowslivewriterpowerpointbackgrounds-e64eimage0-thumb1.png" width="71" align="right"/></a>aptures.&nbsp; Today, I went to their site to see if there was an update and found that they have a nice collection of <a href="http://www.techsmith.com/download/accessories/default.asp" target="_blank">PowerPoint backgrounds</a> (scroll to near the bottom of the page).</p>
]]></content:encoded>
			<wfw:commentRss>http://kelsoe.com/powerpoint-backgrounds/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

