<?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>Kit Menke&#039;s Blog &#187; Uncategorized</title>
	<atom:link href="http://kitmenke.com/blog/category/uncategorized/feed/" rel="self" type="application/rss+xml" />
	<link>http://kitmenke.com/blog</link>
	<description>Experiences with SharePoint, web development, and programming</description>
	<lastBuildDate>Wed, 01 Feb 2012 17:28:48 +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>Commit to SharePoint Overflow!</title>
		<link>http://kitmenke.com/blog/2011/02/09/commit-to-sharepoint-overflow/</link>
		<comments>http://kitmenke.com/blog/2011/02/09/commit-to-sharepoint-overflow/#comments</comments>
		<pubDate>Thu, 10 Feb 2011 03:43:47 +0000</pubDate>
		<dc:creator>Kit</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://kitmenke.com/blog/?p=356</guid>
		<description><![CDATA[I want to put a quick post out here in support of SharePoint Overflow being migrated to StackExchange v2.0. It is a a great complement to StackOverflow for all things SharePoint related. You can commit here: SharePoint Overflow.]]></description>
			<content:encoded><![CDATA[<p>I want to put a quick post out here in support of SharePoint Overflow being migrated to StackExchange v2.0. It is a a great complement to StackOverflow for all things SharePoint related.</p>
<p>You can commit here: <a href="http://area51.stackexchange.com/proposals/28921/sharepoint-overflow?referrer=Z4tLnJTUhc0nXLaDPCj7kA2">SharePoint Overflow</a>.</p>
<img src="http://kitmenke.com/blog/?ak_action=api_record_view&id=356&type=feed" alt="" />]]></content:encoded>
			<wfw:commentRss>http://kitmenke.com/blog/2011/02/09/commit-to-sharepoint-overflow/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>AutoIt3 script to auto resize windows</title>
		<link>http://kitmenke.com/blog/2009/07/31/autoit3-script-to-auto-resize-windows/</link>
		<comments>http://kitmenke.com/blog/2009/07/31/autoit3-script-to-auto-resize-windows/#comments</comments>
		<pubDate>Fri, 31 Jul 2009 14:58:09 +0000</pubDate>
		<dc:creator>Kit</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[AutoIt3]]></category>
		<category><![CDATA[Example]]></category>

		<guid isPermaLink="false">http://kitmenke.com/blog/?p=103</guid>
		<description><![CDATA[One thing that bugs me all the time is when a window doesn&#8217;t remember the position that it was resized or moved to. Although it is more of a nuisance than anything else, I decided to write a little AutoIt3 script to automatically resize my Remote Desktop windows to be the certain place and size that [...]]]></description>
			<content:encoded><![CDATA[<p>One thing that bugs me all the time is when a window doesn&#8217;t remember the position that it was resized or moved to. Although it is more of a nuisance than anything else, I decided to write a little AutoIt3 script to automatically resize my Remote Desktop windows to be the certain place and size that I prefer them to be in.</p>
<p><span id="more-103"></span></p>
<p>The following script will find any windows that have &#8220;Remote Desktop&#8221; in the title and resize them to be their maximum height and width. In fact, I tweaked it a little bit so that the window actually falls outside of the screen. This way I have more screen real estate for the desktop that I&#8217;m working in and I will also be able to quickly move between windows on my desktop.</p>
<pre lang="autoit" escaped="true">;********************************************************************************
; Filename: maximize_window.au3
; Author: Kit Menke
; Date: July 30, 2009
; Description:
;   Resizes any window matching a certain search string to the given dimensions.
;   Useful for Windows you find you have to constantly resize.
;********************************************************************************

; any window that contains the following string will be resized
$windowTitleContains = "Remote Desktop"

; only match exact title names in this script
Opt("WinTitleMatchMode", 3)     ;1=start, 2=subStr, 3=exact, 4=advanced, -1 to -4=Nocase

; the new dimensions of the window to be resized to
; top left corner (x,y) coordinates
$winX = -4
$winY = -29
; the window's new width and height
$winWidth = 1024 - $winX*2
$winHeight = 768 - $winY

; get the list of windows and the string you want to check for
$var = WinList()

For $i = 1 to $var[0][0]
  ; Only display visble windows that have a title matching our search string
  $windowTitle = $var[$i][0]
  $containsTitle = StringInStr($windowTitle,$windowTitleContains)
  If $windowTitle &lt;&gt; "" AND IsVisible($windowTitle) AND 0 &lt;&gt; $containsTitle Then
    ResizeWindowWithExactTitle($windowTitle)
  EndIf
Next

Exit

Func IsVisible($handle)
  If BitAnd( WinGetState($handle), 2 ) Then
    Return 1
  Else
    Return 0
  EndIf
EndFunc

Func ResizeWindowWithExactTitle($winTitle)
    If WinExists($winTitle) Then
        WinMove($winTitle, "", $winX, $winY, $winWidth, $winHeight)
    EndIf
EndFunc</pre>
<p>I then set up a little CMD file to call my au3 file (assumes AutoIt3.exe is in the same directory as your script, but you can obviously make this be whatever you want):</p>
<blockquote><p>AutoIt3.exe maximize_window.au3</p></blockquote>
<p>And then I have a shortcut to that CMD file on my quicklaunch that I can call whenever I need to resize my windows.</p>
<img src="http://kitmenke.com/blog/?ak_action=api_record_view&id=103&type=feed" alt="" />]]></content:encoded>
			<wfw:commentRss>http://kitmenke.com/blog/2009/07/31/autoit3-script-to-auto-resize-windows/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

