<?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>Custom Software and Web Development - Madison WI - Two Miles Solutions, LLC &#187; Windows 7</title>
	<atom:link href="http://www.twomilessolutions.com/tag/windows-7/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.twomilessolutions.com</link>
	<description>Software Solutions That Go the Extra Mile!</description>
	<lastBuildDate>Sun, 01 Aug 2010 05:22:43 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.1</generator>
		<item>
		<title>.NET: One line could save your 64-bit bacon!</title>
		<link>http://www.twomilessolutions.com/2009/11/05/net-one-line-could-save-your-64-bit-bacon/</link>
		<comments>http://www.twomilessolutions.com/2009/11/05/net-one-line-could-save-your-64-bit-bacon/#comments</comments>
		<pubDate>Fri, 06 Nov 2009 05:44:13 +0000</pubDate>
		<dc:creator>Jeff Miles</dc:creator>
				<category><![CDATA[Programming]]></category>
		<category><![CDATA[64-bit]]></category>
		<category><![CDATA[C# .NET]]></category>
		<category><![CDATA[Microsoft Access]]></category>
		<category><![CDATA[Windows 7]]></category>

		<guid isPermaLink="false">http://www.twomilessolutions.com/?p=286</guid>
		<description><![CDATA[I have a customer that recently had to purchase a new computer due to her previous computer finally biting the dust.  Knowing what programs she was running on her computer, I advised her that she should purchase a 32-bit version of Vista (then upgrade to the 32-bit version of Windows 7 when it came out). [...]


Related posts:<ol><li><a href='http://www.twomilessolutions.com/2009/10/28/whats-the-big-deal-about-windows-7/' rel='bookmark' title='Permanent Link: What&#8217;s the big deal about Windows 7'>What&#8217;s the big deal about Windows 7</a></li>
<li><a href='http://www.twomilessolutions.com/2009/09/30/madison-business-connection-robson-computer-technologies/' rel='bookmark' title='Permanent Link: Madison Business Connection: Robson Computer Technologies'>Madison Business Connection: Robson Computer Technologies</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p>I have a customer that recently had to purchase a new computer due to her previous computer finally biting the dust.  Knowing what programs she was running on her computer, I advised her that she should purchase a 32-bit version of Vista (then upgrade to the 32-bit version of <a title="Amazon.com: Windows 7 Home Premium Upgrade" href="http://www.amazon.com/gp/product/B002DHLUWK?ie=UTF8&amp;tag=milestogofrom-20&amp;linkCode=as2&amp;camp=1789&amp;creative=390957&amp;creativeASIN=B002DHLUWK" target="_blank">Windows 7</a> when it came out).</p>
<p>She bought a 32-bit machine that was running Vista and everything seemed fine except the OS was corrupt.  So she took the computer back in to have it replaced and they gave her a shiny new <a title="Amazon.com: Windows 7 Home Premium Upgrade" href="http://www.amazon.com/gp/product/B002DHLUWK?ie=UTF8&amp;tag=milestogofrom-20&amp;linkCode=as2&amp;camp=1789&amp;creative=390957&amp;creativeASIN=B002DHLUWK" target="_blank">Windows 7</a> machine (she was only days away from the release of <a title="Amazon.com: Windows 7 Home Premium Upgrade" href="http://www.amazon.com/gp/product/B002DHLUWK?ie=UTF8&amp;tag=milestogofrom-20&amp;linkCode=as2&amp;camp=1789&amp;creative=390957&amp;creativeASIN=B002DHLUWK" target="_blank">Windows 7</a>) .  She asked them to give her the same computer, but they gave her a 64-bit version of <a title="Amazon.com: Windows 7 Home Premium Upgrade" href="http://www.amazon.com/gp/product/B002DHLUWK?ie=UTF8&amp;tag=milestogofrom-20&amp;linkCode=as2&amp;camp=1789&amp;creative=390957&amp;creativeASIN=B002DHLUWK" target="_blank">Windows 7</a> so when she went to install her programs she ran into a ton of problems because the programs were not written for the 64-bit versions of the operating system (a lot of legacy applications are not written for 64-bit operating systems, this isn&#8217;t Microsoft&#8217;s fault, this is a fault of the application programmers).</p>
<p>I have a <a title="UPurMEMORY - Memorization Software" href="http://www.twomilessolutions.com/upurmemory" target="_blank">small application that I wrote</a> that for ease of use and not having to install any other programs, I chose to use Microsoft Access as the database for the application (say what you will, it was a side project that turned into something I could sell), but there is no 64-bit JET driver for reading Access databases so for 64-bit operating systems, I was hosed, until I found out that one line could change everything.</p>
<p>In the csproj file of your C# .NET application, in the first property group, add this line:</p>
<pre>&lt;PlatformTarget&gt;x86&lt;/PlatformTarget&gt;</pre>
<p>So your property group should look something like this:</p>
<pre>&lt;PropertyGroup&gt;
&lt;PlatformTarget&gt;x86&lt;/PlatformTarget&gt;
&lt;Configuration Condition=" '$(Configuration)' == '' "&gt;Debug&lt;/Configuration&gt;
&lt;Platform Condition=" '$(Platform)' == '' "&gt;AnyCPU&lt;/Platform&gt;
&lt;ProductVersion&gt;8.0.50727&lt;/ProductVersion&gt;
&lt;SchemaVersion&gt;2.0&lt;/SchemaVersion&gt;
&lt;ProjectGuid&gt;{A16625F1-A4BA-46FA-BD05-737257A18EBD}&lt;/ProjectGuid&gt;
&lt;OutputType&gt;WinExe&lt;/OutputType&gt;
&lt;AppDesignerFolder&gt;Properties&lt;/AppDesignerFolder&gt;
&lt;RootNamespace&gt;UPurMEMORY&lt;/RootNamespace&gt;
&lt;AssemblyName&gt;UPurMEMORY&lt;/AssemblyName&gt;
&lt;ApplicationIcon&gt;UPurMEMORY.48.ico&lt;/ApplicationIcon&gt;
&lt;FileUpgradeFlags&gt;&lt;/FileUpgradeFlags&gt;
&lt;UpgradeBackupLocation&gt;&lt;/UpgradeBackupLocation&gt;
&lt;OldToolsVersion&gt;2.0&lt;/OldToolsVersion&gt;
&lt;/PropertyGroup&gt;</pre>
<p>That one little line saved my bacon and allows me to <a title="UPurMEMORY - Memorization Tool" href="http://www.twomilessolutions.com/upurmemory" target="_blank">sell that piece of software for $10</a> to anyone who runs a 64-bit operating system.  I&#8217;m not saying this will solve all of your problems, but it helped me.</p>
<p><strong>Related Links:</strong></p>
<p><strong>- </strong><a title="UPurMEMORY - Memorization Tool" href="http://www.twomilessolutions.com/upurmemory" target="_blank">UPurMEMORY</a> &#8211; memorization utility ($10.00 USD)<br />
- <a title="Amazon.com - Windows 7 Home Premium" href="http://www.amazon.com/gp/product/B002DHGMK0?ie=UTF8&amp;tag=milestogofrom-20&amp;linkCode=as2&amp;camp=1789&amp;creative=390957&amp;creativeASIN=B002DHGMK0" target="_blank">Windows 7 Home Premium</a> (<a title="Amazon.com - Windows 7 Home Premium Upgrade" href="http://www.amazon.com/gp/product/B002DHLUWK?ie=UTF8&amp;tag=milestogofrom-20&amp;linkCode=as2&amp;camp=1789&amp;creative=390957&amp;creativeASIN=B002DHLUWK" target="_blank">upgrade</a>)<br />
- <a title="Amazon.com - Windows 7 Professional" href="http://www.amazon.com/gp/product/B002DHLVII?ie=UTF8&amp;tag=milestogofrom-20&amp;linkCode=as2&amp;camp=1789&amp;creative=390957&amp;creativeASIN=B002DHLVII" target="_blank">Windows 7 Professional</a> (<a title="Amazon.com - Windows 7 Professional Upgrade" href="http://www.amazon.com/gp/product/B002DHGM50?ie=UTF8&amp;tag=milestogofrom-20&amp;linkCode=as2&amp;camp=1789&amp;creative=390957&amp;creativeASIN=B002DHGM50" target="_blank">upgrade</a>)<br />
- <a title="Amazon.com - Windows 7 Ultimate" href="http://www.amazon.com/gp/product/B002DHGMVY?ie=UTF8&amp;tag=milestogofrom-20&amp;linkCode=as2&amp;camp=1789&amp;creative=390957&amp;creativeASIN=B002DHGMVY" target="_blank">Windows 7 Ultimate</a> (<a title="Amazon.com - Windows 7 Ultimate Upgrade" href="http://www.amazon.com/gp/product/B002DHLV8S?ie=UTF8&amp;tag=milestogofrom-20&amp;linkCode=as2&amp;camp=1789&amp;creative=390957&amp;creativeASIN=B002DHLV8S" target="_blank">upgrade</a>)</p>
<p><strong>Related Posts:</strong></p>
<p><strong>- </strong><a title="TMS Blog - What's the big deal about Windows 7?" href="http://www.twomilessolutions.com/2009/10/28/whats-the-big-deal-about-windows-7/" target="_blank">What&#8217;s the big deal about Windows 7?</a></p>
<p><a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save"><img src="http://www.twomilessolutions.com/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share/Bookmark"/></a> </p>

<p>Related posts:<ol><li><a href='http://www.twomilessolutions.com/2009/10/28/whats-the-big-deal-about-windows-7/' rel='bookmark' title='Permanent Link: What&#8217;s the big deal about Windows 7'>What&#8217;s the big deal about Windows 7</a></li>
<li><a href='http://www.twomilessolutions.com/2009/09/30/madison-business-connection-robson-computer-technologies/' rel='bookmark' title='Permanent Link: Madison Business Connection: Robson Computer Technologies'>Madison Business Connection: Robson Computer Technologies</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://www.twomilessolutions.com/2009/11/05/net-one-line-could-save-your-64-bit-bacon/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>What&#8217;s the big deal about Windows 7</title>
		<link>http://www.twomilessolutions.com/2009/10/28/whats-the-big-deal-about-windows-7/</link>
		<comments>http://www.twomilessolutions.com/2009/10/28/whats-the-big-deal-about-windows-7/#comments</comments>
		<pubDate>Wed, 28 Oct 2009 20:51:48 +0000</pubDate>
		<dc:creator>Jeff Miles</dc:creator>
				<category><![CDATA[Products]]></category>
		<category><![CDATA[Windows 7]]></category>

		<guid isPermaLink="false">http://www.twomilessolutions.com/?p=258</guid>
		<description><![CDATA[If you have been watching any TV lately, you have probably seen the new Mac ads or the new Windows 7 ads and you are wondering what&#8217;s the big deal.  Hopefully this post will answer some of your questions. After the debacle that was Vista, Microsoft had a lot to prove and I think they [...]


No related posts.]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.amazon.com/gp/product/B002DHGM50?ie=UTF8&amp;tag=milestogofrom-20&amp;linkCode=as2&amp;camp=1789&amp;creative=390957&amp;creativeASIN=B002DHGM50" target="_blank"><img class="alignright size-full wp-image-259" title="Windows 7 Professional" src="http://www.twomilessolutions.com/wp-content/uploads/2009/10/41yWLJxUclL._SL160_.jpg" rel="facebox" alt="Windows 7 Professional" width="160" height="160" /></a>If you have been watching any TV lately, you have probably seen the new Mac ads or the new Windows 7 ads and you are wondering what&#8217;s the big deal.  Hopefully this post will answer some of your questions.</p>
<p>After the debacle that was Vista, Microsoft had a lot to prove and I think they did it.  I&#8217;m not the only one who thinks so, according to a lifehacker.com poll posted this morning a large percentage of their users are fans see actual numbers (from 2:00 pm on October 28th, below)</p>
<ul>
<li>Love it &#8211; 59% (8,681 votes)</li>
<li>Like it &#8211; 27% (3,956 votes)</li>
<li>Indifferent &#8211; 5% (804 votes)</li>
<li>Not Thrilled &#8211; 4 % (590 votes)</li>
<li>Hate it &#8211; 2% (290 votes)</li>
<li>Ambivilent &#8211; 2% (251 votes)</li>
<li>Other &#8211; 2% (242 votes)</li>
</ul>
<p>So roughly 86% of the people who responded like it so they must have done something right.  Here are a few of the reasons:</p>
<ul>
<li><a title="CNET Snow Leopard vs. Windows 7" href="http://reviews.cnet.com/8301-31012_7-10319612-10355804.html" target="_blank">CNET did a performance test</a> with Mac OS X Snow Leopard vs. Windows 7 and Windows 7 stacked up pretty well.</li>
<li><a title="Lifehacker Snow Leopard vs. Windows 7 features" href="http://lifehacker.com/5277207/windows-7-versus-mac-os-x-leopard-the-feature+by+feature-showdown" target="_blank">Lifehacker did a feature test</a> (on a limited set of features) where Windows 7 actually came out ahead (Mac &#8211; 2, Windows &#8211; 3, Draw &#8211; 1).</li>
<li><a title="PCWorld: Windows 7 less of a resource hog than Vista" href="http://www.pcworld.com/article/156647/windows_7_is_less_of_a_resourcehog_than_vista.html?tk=rss_news" target="_blank">Windows 7 is less of a resource hog than Vista was</a>.  After having had Windows Vista installed on my main laptop and ditching Vista for Linux until I got a hold of Windows 7, I can concur.  Windows 7 is much snappier on my laptop than Vista ever was.</li>
</ul>
<p>As stated above, I have loved my experience with Windows 7 to this point.  I installed the Release Candidate when it came out and was really impressed.  I have since upgraded my Release Candidate copy to a fully licensed copy of <a title="Amazon.com: Windows 7 Professional" href="http://www.amazon.com/gp/product/B002DHLVII?ie=UTF8&amp;tag=milestogofrom-20&amp;linkCode=as2&amp;camp=1789&amp;creative=390957&amp;creativeASIN=B002DHLVII" target="_blank">Windows 7 Professional</a> (<a title="Amazon.com: Windows 7 Professional Upgrade" href="http://www.amazon.com/gp/product/B002DHGM50?ie=UTF8&amp;tag=milestogofrom-20&amp;linkCode=as2&amp;camp=1789&amp;creative=390957&amp;creativeASIN=B002DHGM50" target="_blank">upgrade</a>).  Here are my three favorite features.</p>
<p><strong>Windows 7 Taskbar<br />
<span style="font-weight: normal;">With every previous version of Windows, I would do one of two things, either overload the quick launch bar with icons or download a Mac OS X style dock for holding application icons.  I don&#8217;t need to do that with Windows 7, take a look at my taskbar (cropped to fit)<br />
</span><img class="alignnone size-full wp-image-261" title="taskbar" src="http://www.twomilessolutions.com/wp-content/uploads/2009/10/2009-10-28_1526.png" alt="taskbar" width="451" height="47" /><br />
<span style="font-weight: normal;">Everything is right where I need it, I don&#8217;t have to go to the start menu at all.  To get an icon onto the taskbar, from the start menu or file explorer right click on the program icon and click <em>Pin to Taskbar </em>that&#8217;s it (see below).<br />
<img class="alignnone size-full wp-image-262" title="pin to taskbar" src="http://www.twomilessolutions.com/wp-content/uploads/2009/10/pin-to-taskbar.png" alt="pin to taskbar" width="412" height="540" /></span></strong></p>
<p><strong>Rotating Desktop images<br />
<span style="font-weight: normal;">As you can see from the backgrounds of the two images already posted in this blog my desktop background has switched and here&#8217;s the cool thing, I didn&#8217;t  have to switch it by hand.  I just told Windows 7 to monitor a folder and then tell it how often to rotate.  To get there, right click on your desktop and choose <em>Personalize</em>.  Then, in the bottom left, click on <em>Desktop Background</em>.  Click the image for a full size view.<br />
<a rel="attachment wp-att-263 facebox" href="http://www.twomilessolutions.com/wp-content/uploads/2009/10/desktop.png" rel="facebox"><img class="alignnone size-medium wp-image-263" title="desktop" src="http://www.twomilessolutions.com/wp-content/uploads/2009/10/desktop-300x200.png" alt="desktop" width="300" height="200" /></a><br />
I know this is a minor deal, but for me it is a productivity issue, I can&#8217;t stand having the same desktop background all the time.</span></strong></p>
<p><strong>Window Snapping<br />
<span style="font-weight: normal;">One of my favorite features of Ubuntu while I was using it was the ability to grab a window and drag it to another screen or part of the screen and have it snap to the side.  Windows 7 has implemented this and done even more.  First, for you mouse users, you can grab a window by its title bar and drag it to either the top of the screen (this will maximize the window), the left side, or the right side (snapping a window to the left or right side will make the window 50% of the screen width and the full screen height.</span> </strong> In the screenshot below you see two windows snapped to the sides of the screen, this is great for side by side viewing.  (click on the image for a larger view)<br />
<a rel="attachment wp-att-264 facebox" href="http://www.twomilessolutions.com/wp-content/uploads/2009/10/snapped-windows.png" rel="facebox"><img class="alignnone size-medium wp-image-264" title="snapped windows" src="http://www.twomilessolutions.com/wp-content/uploads/2009/10/snapped-windows-300x188.png" alt="snapped windows" width="300" height="188" /></a></p>
<p>For those of you who are keyboard users, the windows key is your friend.  (look to the left of your spacebar)<br />
<img class="alignnone size-full wp-image-266" title="windows_key" src="http://www.twomilessolutions.com/wp-content/uploads/2009/10/windows_key.jpg" alt="windows_key" width="400" height="261" /><br />
By using the keyboard shortcut windows+left arrow you can cycle a window to the left through its different snap modes, windows+up arrow you can maximize the current window, or with windows+right arrow you can cycle a window to the right through its different snap modes.</p>
<p>My other favorite feature is that is just runs well, runs fast, and is pleasing to the eyes.  Let me know your thoughts in the comments below.  If you found this blog helpful, use the Share/Save button below to share this blog entry with your friends.</p>
<p>Get your own copy by clicking a link below:</p>
<ul>
<li><a title="Amazon.com: Windows 7 Home Premium" href="http://www.amazon.com/gp/product/B002DHGMK0?ie=UTF8&amp;tag=milestogofrom-20&amp;linkCode=as2&amp;camp=1789&amp;creative=390957&amp;creativeASIN=B002DHGMK0" target="_blank">Windows 7 Home Premium</a></li>
<li><a title="Amazon.com: Windows 7 Home Premium Upgrade" href="http://www.amazon.com/gp/product/B002DHLUWK?ie=UTF8&amp;tag=milestogofrom-20&amp;linkCode=as2&amp;camp=1789&amp;creative=390957&amp;creativeASIN=B002DHLUWK" target="_blank">Windows 7 Home Premium Upgrade</a></li>
<li><a title="Amazon.com: Windows 7 Professional" href="http://www.amazon.com/gp/product/B002DHLVII?ie=UTF8&amp;tag=milestogofrom-20&amp;linkCode=as2&amp;camp=1789&amp;creative=390957&amp;creativeASIN=B002DHLVII" target="_blank">Windows 7 Professional</a></li>
<li><a title="Amazon.com: Windows 7 Professional Upgrade" href="http://www.amazon.com/gp/product/B002DHGM50?ie=UTF8&amp;tag=milestogofrom-20&amp;linkCode=as2&amp;camp=1789&amp;creative=390957&amp;creativeASIN=B002DHGM50" target="_blank">Windows 7 Professional Upgrade</a></li>
<li><a title="Amazon.com: Windows 7 Ultimate" href="http://www.amazon.com/gp/product/B002DHGMVY?ie=UTF8&amp;tag=milestogofrom-20&amp;linkCode=as2&amp;camp=1789&amp;creative=390957&amp;creativeASIN=B002DHGMVY" target="_blank">Windows 7 Ultimate</a></li>
<li><a title="Amazon.com: Windows 7 Ultimate Upgrade" href="http://www.amazon.com/gp/product/B002DHGM50?ie=UTF8&amp;tag=milestogofrom-20&amp;linkCode=as2&amp;camp=1789&amp;creative=390957&amp;creativeASIN=B002DHGM50" target="_blank">Windows 7 Ultimate Upgrade</a></li>
</ul>
<p>Also, if you need help installing Windows 7 contact Chris at <a title="Robson Computer Technologies" href="http://www.robsoncomputertech.com" target="_blank">Robson Computer Technologies</a>, tell him Jeff sent you.</p>
<p><a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save"><img src="http://www.twomilessolutions.com/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share/Bookmark"/></a> </p>

<p>No related posts.</p>]]></content:encoded>
			<wfw:commentRss>http://www.twomilessolutions.com/2009/10/28/whats-the-big-deal-about-windows-7/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
	</channel>
</rss>
