<feed xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:trackback="http://madskills.com/public/xml/rss/module/trackback/" xmlns:wfw="http://wellformedweb.org/CommentAPI/" xmlns:slash="http://purl.org/rss/1.0/modules/slash/" xmlns="http://www.w3.org/2005/Atom" xml:lang="en-US">
    <title>Igor Milovanović</title>
    <link rel="self" type="application/xml" href="http://geekswithblogs.net/imilovanovic/Atom.aspx" />
    <subtitle type="html">.NET, cats and more...</subtitle>
    <id>http://geekswithblogs.net/imilovanovic/Default.aspx</id>
    <author>
        <name>Igor Milovanovic</name>
        <uri>http://geekswithblogs.net/imilovanovic/Default.aspx</uri>
    </author>
    <generator uri="http://subtextproject.com" version="Subtext Version 0.0.0.0">Subtext</generator>
    <updated>2011-11-24T16:09:07Z</updated>
    <entry>
        <title>Mouse Button Swapper &amp;ndash; A simple windows 7 Silverlight gadget</title>
        <link rel="self" type="text/html" href="http://geekswithblogs.net/imilovanovic/archive/2010/10/01/a-simple-mouse-swapper-windows-7-gadget.aspx" />
        <id>http://geekswithblogs.net/imilovanovic/archive/2010/10/01/a-simple-mouse-swapper-windows-7-gadget.aspx</id>
        <published>2010-10-01T00:52:4702:00:00</published>
        <updated>2010-10-01T01:00:24Z</updated>
        <content type="html">&lt;p&gt; &lt;/p&gt;  &lt;p&gt;I am using the mouse with my left hand but I am not swapping the mouse buttons. (Old habit  from the times I was using public workstations at the university. I was too lazy to play with the system setup every time, so that I just moved the mouse from the right to the left side.)&lt;/p&gt;  &lt;p&gt; I am also using multiple pointing devices with my notebook. (a gaming mouse with multiple buttons at home, a simpler one at work, and also from time to time the touchpad ). Normally I would setup the mouse button layout in the driver once  for every device . A few months ago however I bought a &lt;a href="http://www.roccat.org/Products/Gaming-Mice/ROCCAT-Kova/"&gt;Roccat Kova&lt;/a&gt; gaming mouse. Cool, fast, precise but unfortunately also driverless. Swapping the mouse button layout for Kova and for all other pointing devices started being rather complicated: Click on Control-Panel, Mouse, Swap-Mouse Buttons etc.&lt;/p&gt;  &lt;p&gt; After few times I had to do go through the Control Panel, I decided that I had enough of clicking (and I was also in the mood to play around a bit with the technology) so I wrote a small windows 7 gadget in Silverlight which can be used to quickly swap mouse buttons. This way I can just quickly double-click the gadget on the desktop to swap layout, without the need to go to control panel.( I am planning to add some automated device recognition to the gadget in the future, but for now I am pretty much ok with this.)&lt;/p&gt;  &lt;p&gt; &lt;/p&gt;  &lt;p&gt;Swapping the mouse buttons under windows is actually a very simple API call:&lt;/p&gt;  &lt;p&gt; &lt;/p&gt;  &lt;div class="csharpcode"&gt;   &lt;pre class="alt"&gt;    &lt;span class="kwrd"&gt;public&lt;/span&gt; &lt;span class="kwrd"&gt;static&lt;/span&gt; &lt;span class="kwrd"&gt;class&lt;/span&gt; Win32ApiUtilities&lt;/pre&gt;

  &lt;pre&gt;    {&lt;/pre&gt;

  &lt;pre class="alt"&gt;        &lt;span class="kwrd"&gt;private&lt;/span&gt; &lt;span class="kwrd"&gt;static&lt;/span&gt; &lt;span class="kwrd"&gt;readonly&lt;/span&gt; &lt;span class="kwrd"&gt;int&lt;/span&gt; SM_SWAPBUTTON = 23;&lt;/pre&gt;

  &lt;pre&gt; &lt;/pre&gt;

  &lt;pre class="alt"&gt;        &lt;span class="kwrd"&gt;public&lt;/span&gt; &lt;span class="kwrd"&gt;static&lt;/span&gt; &lt;span class="kwrd"&gt;bool&lt;/span&gt; IsMouseSwapped()&lt;/pre&gt;

  &lt;pre&gt;        {&lt;/pre&gt;

  &lt;pre class="alt"&gt;            &lt;span class="kwrd"&gt;return&lt;/span&gt; GetSystemMetrics(SM_SWAPBUTTON) &amp;gt; 0;&lt;/pre&gt;

  &lt;pre&gt;        }&lt;/pre&gt;

  &lt;pre class="alt"&gt; &lt;/pre&gt;

  &lt;pre&gt;        [DllImport(&lt;span class="str"&gt;"user32.dll"&lt;/span&gt;, CharSet = CharSet.Auto, ExactSpelling = &lt;span class="kwrd"&gt;true&lt;/span&gt;)]&lt;/pre&gt;

  &lt;pre class="alt"&gt;        &lt;span class="kwrd"&gt;public&lt;/span&gt; &lt;span class="kwrd"&gt;static&lt;/span&gt; &lt;span class="kwrd"&gt;extern&lt;/span&gt; &lt;span class="kwrd"&gt;int&lt;/span&gt; GetSystemMetrics(&lt;span class="kwrd"&gt;int&lt;/span&gt; nIndex);&lt;/pre&gt;

  &lt;pre&gt; &lt;/pre&gt;

  &lt;pre class="alt"&gt;        [DllImport(&lt;span class="str"&gt;"user32.dll"&lt;/span&gt;)]&lt;/pre&gt;

  &lt;pre&gt;        [&lt;span class="kwrd"&gt;return&lt;/span&gt;: MarshalAs(UnmanagedType.Bool)]&lt;/pre&gt;

  &lt;pre class="alt"&gt;        &lt;span class="kwrd"&gt;public&lt;/span&gt; &lt;span class="kwrd"&gt;static&lt;/span&gt; &lt;span class="kwrd"&gt;extern&lt;/span&gt; &lt;span class="kwrd"&gt;bool&lt;/span&gt; &lt;/pre&gt;

  &lt;pre&gt;            SwapMouseButton([param: MarshalAs(UnmanagedType.Bool)] &lt;span class="kwrd"&gt;bool&lt;/span&gt; fSwap);&lt;/pre&gt;

  &lt;pre class="alt"&gt;    }&lt;/pre&gt;
&lt;/div&gt;

&lt;p&gt;&lt;/p&gt;&lt;style type="text/css"&gt;&lt;![CDATA[


.csharpcode, .csharpcode pre
{
	font-size: small;
	color: black;
	font-family: consolas, "Courier New", courier, monospace;
	background-color: #ffffff;
	/*white-space: pre;*/
}
.csharpcode pre { margin: 0em; }
.csharpcode .rem { color: #008000; }
.csharpcode .kwrd { color: #0000ff; }
.csharpcode .str { color: #006080; }
.csharpcode .op { color: #0000c0; }
.csharpcode .preproc { color: #cc6633; }
.csharpcode .asp { background-color: #ffff00; }
.csharpcode .html { color: #800000; }
.csharpcode .attr { color: #ff0000; }
.csharpcode .alt 
{
	background-color: #f4f4f4;
	width: 100%;
	margin: 0em;
}
.csharpcode .lnum { color: #606060; }]]&gt;&lt;/style&gt;

&lt;p&gt; &lt;/p&gt;

&lt;p&gt;The problem with API-calls is that they can’t be done directly from Silverlight (silverlight runs in a sandbox), however there is a workaround :&lt;/p&gt;

&lt;p&gt; &lt;/p&gt;

&lt;p&gt;A windows 7 gadget is actually a simple html page with some XML settings zipped and renamed to .gadget file. As Silverlight can communicate with the JavaScript engine of the host page, and the security settings of a gadget allow the browser to instantiate and invoke COM objects, the solution for the invocation of an API call from Silverlight can be done like this: &lt;strong&gt;Silverlight –&amp;gt; JavaScript –&amp;gt; COM Interop –&amp;gt; API Call&lt;/strong&gt;. Not nice but doable. Here are the necessary steps: &lt;/p&gt;

&lt;p&gt; &lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Create a class and register the assembly for COM Interop:&lt;/strong&gt;&lt;/p&gt;

&lt;pre class="csharpcode"&gt; &lt;/pre&gt;

&lt;div class="csharpcode"&gt;
  &lt;pre class="alt"&gt;[ComVisible(&lt;span class="kwrd"&gt;true&lt;/span&gt;)]&lt;/pre&gt;

  &lt;pre&gt;[Guid(&lt;span class="str"&gt;"4C5DE161-3D74-401A-88BF-85F05E2D77AC"&lt;/span&gt;)]&lt;/pre&gt;

  &lt;pre class="alt"&gt;[ProgId(&lt;span class="str"&gt;"MouseSwapper.MouseSwapper"&lt;/span&gt;)]&lt;/pre&gt;

  &lt;pre&gt;[ClassInterface(ClassInterfaceType.AutoDual)]&lt;/pre&gt;

  &lt;pre class="alt"&gt;&lt;span class="kwrd"&gt;public&lt;/span&gt; &lt;span class="kwrd"&gt;class&lt;/span&gt; MouseSwapper : IMouseSwapper&lt;/pre&gt;

  &lt;pre&gt;{&lt;/pre&gt;

  &lt;pre class="alt"&gt;    &lt;span class="kwrd"&gt;public&lt;/span&gt; &lt;span class="kwrd"&gt;void&lt;/span&gt; LeftySetting()&lt;/pre&gt;

  &lt;pre&gt;    {&lt;/pre&gt;

  &lt;pre class="alt"&gt;        Win32ApiUtilities.SwapMouseButton(&lt;span class="kwrd"&gt;true&lt;/span&gt;);&lt;/pre&gt;

  &lt;pre&gt;    }&lt;/pre&gt;

  &lt;pre class="alt"&gt;}&lt;/pre&gt;
&lt;/div&gt;
&lt;style type="text/css"&gt;&lt;![CDATA[


.csharpcode, .csharpcode pre
{
	font-size: small;
	color: black;
	font-family: consolas, "Courier New", courier, monospace;
	background-color: #ffffff;
	/*white-space: pre;*/
}
.csharpcode pre { margin: 0em; }
.csharpcode .rem { color: #008000; }
.csharpcode .kwrd { color: #0000ff; }
.csharpcode .str { color: #006080; }
.csharpcode .op { color: #0000c0; }
.csharpcode .preproc { color: #cc6633; }
.csharpcode .asp { background-color: #ffff00; }
.csharpcode .html { color: #800000; }
.csharpcode .attr { color: #ff0000; }
.csharpcode .alt 
{
	background-color: #f4f4f4;
	width: 100%;
	margin: 0em;
}
.csharpcode .lnum { color: #606060; }]]&gt;&lt;/style&gt;

&lt;p&gt; &lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Write a script function  in the gadget HTML page to instantiate the ActiveXObject and invoke the method:&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt; &lt;/p&gt;

&lt;div class="csharpcode"&gt;
  &lt;pre class="alt"&gt;&amp;lt;script type=&lt;span class="str"&gt;"text/jscript"&lt;/span&gt;&amp;gt;&lt;/pre&gt;

  &lt;pre&gt;        &lt;span class="kwrd"&gt;function&lt;/span&gt; LeftySetting() {&lt;/pre&gt;

  &lt;pre class="alt"&gt;            &lt;span class="kwrd"&gt;var&lt;/span&gt; mouseSwapper = &lt;span class="kwrd"&gt;new&lt;/span&gt; ActiveXObject(&lt;span class="str"&gt;"MouseSwapper.MouseSwapper"&lt;/span&gt;);&lt;/pre&gt;

  &lt;pre&gt;            mouseSwapper.LeftySetting();&lt;/pre&gt;

  &lt;pre class="alt"&gt;        }&lt;/pre&gt;

  &lt;pre&gt;&amp;lt;/script&amp;gt;&lt;/pre&gt;

  &lt;pre&gt; &lt;/pre&gt;

  &lt;pre&gt;&lt;strong&gt;And call the script from Silverlight:&lt;/strong&gt;&lt;/pre&gt;

  &lt;pre&gt; &lt;/pre&gt;

  &lt;pre&gt; &lt;/pre&gt;

  &lt;div class="csharpcode"&gt;
    &lt;pre class="alt"&gt;HtmlPage.Window.Invoke(&lt;span class="str"&gt;"LeftySetting"&lt;/span&gt;);&lt;/pre&gt;
  &lt;/div&gt;
  &lt;style type="text/css"&gt;&lt;![CDATA[


.csharpcode, .csharpcode pre
{
	font-size: small;
	color: black;
	font-family: consolas, "Courier New", courier, monospace;
	background-color: #ffffff;
	/*white-space: pre;*/
}
.csharpcode pre { margin: 0em; }
.csharpcode .rem { color: #008000; }
.csharpcode .kwrd { color: #0000ff; }
.csharpcode .str { color: #006080; }
.csharpcode .op { color: #0000c0; }
.csharpcode .preproc { color: #cc6633; }
.csharpcode .asp { background-color: #ffff00; }
.csharpcode .html { color: #800000; }
.csharpcode .attr { color: #ff0000; }
.csharpcode .alt 
{
	background-color: #f4f4f4;
	width: 100%;
	margin: 0em;
}
.csharpcode .lnum { color: #606060; }]]&gt;&lt;/style&gt;&lt;/div&gt;
&lt;style type="text/css"&gt;&lt;![CDATA[


.csharpcode, .csharpcode pre
{
	font-size: small;
	color: black;
	font-family: consolas, "Courier New", courier, monospace;
	background-color: #ffffff;
	/*white-space: pre;*/
}
.csharpcode pre { margin: 0em; }
.csharpcode .rem { color: #008000; }
.csharpcode .kwrd { color: #0000ff; }
.csharpcode .str { color: #006080; }
.csharpcode .op { color: #0000c0; }
.csharpcode .preproc { color: #cc6633; }
.csharpcode .asp { background-color: #ffff00; }
.csharpcode .html { color: #800000; }
.csharpcode .attr { color: #ff0000; }
.csharpcode .alt 
{
	background-color: #f4f4f4;
	width: 100%;
	margin: 0em;
}
.csharpcode .lnum { color: #606060; }]]&gt;&lt;/style&gt;

&lt;p&gt; &lt;/p&gt;

&lt;p&gt;This is how the gadget looks like:&lt;/p&gt;

&lt;p&gt; &lt;/p&gt;

&lt;p&gt;&lt;a href="http://geekswithblogs.net/images/geekswithblogs_net/imilovanovic/WindowsLiveWriter/ASimpleMouseSwapperWindows7Gadget_3F4/image_2.png" rel="lightbox"&gt;&lt;img style="border-right-width: 0px; display: inline; border-top-width: 0px; border-bottom-width: 0px; border-left-width: 0px" title="image" border="0" alt="image" src="http://geekswithblogs.net/images/geekswithblogs_net/imilovanovic/WindowsLiveWriter/ASimpleMouseSwapperWindows7Gadget_3F4/image_thumb.png" width="169" height="67" /&gt;&lt;/a&gt; &lt;/p&gt;

&lt;p&gt;&lt;a href="http://geekswithblogs.net/images/geekswithblogs_net/imilovanovic/WindowsLiveWriter/ASimpleMouseSwapperWindows7Gadget_3F4/image_4.png" rel="lightbox"&gt;&lt;img style="border-right-width: 0px; display: inline; border-top-width: 0px; border-bottom-width: 0px; border-left-width: 0px" title="image" border="0" alt="image" src="http://geekswithblogs.net/images/geekswithblogs_net/imilovanovic/WindowsLiveWriter/ASimpleMouseSwapperWindows7Gadget_3F4/image_thumb_1.png" width="172" height="65" /&gt;&lt;/a&gt; &lt;/p&gt;

&lt;p&gt; &lt;/p&gt;

&lt;p&gt; &lt;/p&gt;

&lt;p&gt; &lt;/p&gt;

&lt;p&gt; &lt;/p&gt;

&lt;p&gt; &lt;/p&gt;

&lt;p&gt;If you are left handed and happen to have the same problem like me with your Kova (or any other driverless device) the working version of the gadget is below (You will need .NET Framework 4.0 and Silverlight 4 installed on your machine):&lt;/p&gt;

&lt;p&gt; &lt;/p&gt;

&lt;p&gt;&lt;iframe style="padding-bottom: 0px; background-color: #fcfcfc; padding-left: 0px; width: 98px; padding-right: 0px; height: 115px; padding-top: 0px" title="Preview" marginheight="0" src="http://cid-106b7a0be9bfca50.office.live.com/embedicon.aspx/.Public/MouseSwapper.zip" frameborder="0" marginwidth="0" scrolling="no"&gt;&lt;/iframe&gt;&lt;/p&gt;&lt;img src="http://geekswithblogs.net/imilovanovic/aggbug/142048.aspx" width="1" height="1" /&gt;</content>
        <wfw:comment>http://geekswithblogs.net/imilovanovic/comments/142048.aspx</wfw:comment>
        <slash:comments>4</slash:comments>
        <wfw:commentRss>http://geekswithblogs.net/imilovanovic/comments/commentRss/142048.aspx</wfw:commentRss>
        <trackback:ping>http://geekswithblogs.net/imilovanovic/services/trackbacks/142048.aspx</trackback:ping>
    </entry>
    <entry>
        <title>Working with Visual Studio Web Development Server and IE6 in XP Mode on Windows 7</title>
        <link rel="self" type="text/html" href="http://geekswithblogs.net/imilovanovic/archive/2010/04/26/working-with-visual-studio-web-development-server-and-ie6-in.aspx" />
        <id>http://geekswithblogs.net/imilovanovic/archive/2010/04/26/working-with-visual-studio-web-development-server-and-ie6-in.aspx</id>
        <published>2010-04-26T23:39:4902:00:00</published>
        <updated>2010-04-27T00:11:59Z</updated>
        <content type="html">&lt;p&gt; &lt;/p&gt;  &lt;p&gt;&lt;em&gt;(&lt;/em&gt;&lt;a href="http://stackoverflow.com/users/110045/brian-reiter"&gt;&lt;em&gt;&lt;strong&gt;Brian Reiter&lt;/strong&gt;&lt;/em&gt;&lt;/a&gt;&lt;em&gt; from  &lt;/em&gt;&lt;a href="http://thoughtfulcomputing.com/"&gt;&lt;em&gt;thoughtful computing&lt;/em&gt;&lt;/a&gt;&lt;em&gt; has described this setup in this &lt;/em&gt;&lt;a href="http://stackoverflow.com/questions/683151/connect-remotely-to-webdev-webserver-exe"&gt;&lt;em&gt;StackOverflow&lt;/em&gt;&lt;/a&gt;&lt;em&gt; thread. The credit for the idea is entirely his, I have just extended it with some step by step descriptions and added some links and screenhots.)&lt;/em&gt;&lt;/p&gt;  &lt;p&gt; &lt;/p&gt;  &lt;p&gt;If you are forced  to still support Internet Explorer 6, you can setup following combination on your machine to make the development for it less painful. A common problem when developing on Windows 7 is that you can’t install IE6 on your machine. (Not that you want that anyway). You will probably end up working locally with IE8 and FF, and test your IE6 compatibility on a separate machine. This can get quite annoying, because you will have to maintain two different development environments where you might not have all needed tools available etc. If you have Windows 7, you can help yourself by installing IE6 in a Windows 7 XP Mode, which is basically just a Windows XP running in a virtual machine. &lt;/p&gt;  &lt;p&gt; &lt;/p&gt;  &lt;p&gt; [1] &lt;a href="http://www.microsoft.com/windows/virtual-pc/download.aspx"&gt;Windows XP Mode installation&lt;/a&gt; &lt;/p&gt;  &lt;p&gt; &lt;/p&gt;  &lt;p&gt;After you have installed and configured the XP mode (remember the security settings like Windows Update and antivirus software)  you should add the shortcut to the IE6 in the virtual machine to the “all users” start menu. This shortcut will be replicated to your windows 7 XP mode start menu, and you will be able to seamlessly start your IE 6 as a normal window on your Windows 7 desktop.&lt;/p&gt;  &lt;p&gt; &lt;/p&gt;  &lt;p&gt; [2] &lt;a href="http://blog.dotsmart.net/2009/06/24/using-windows-7s-xp-mode-to-run-ie-6-and-ie-7-side-by-side/"&gt;Configure IE6 for the Windows 7 installation&lt;/a&gt;&lt;/p&gt;  &lt;p&gt; &lt;/p&gt;  &lt;p&gt;If you configure your XP – Mode to use Shared Networking (NAT), you can now use IE6 to browse the sites on the internet. (add proxy settings to IE6 if necessary).&lt;/p&gt;  &lt;p&gt; &lt;/p&gt;  &lt;p&gt;&lt;a href="http://geekswithblogs.net/images/geekswithblogs_net/imilovanovic/WindowsLiveWriter/WorkingwithVisualStudioWebDevelopmentSer_143C5/image_12.png" rel="lightbox"&gt;&lt;img style="border-right-width: 0px; display: inline; border-top-width: 0px; border-bottom-width: 0px; border-left-width: 0px" title="image" border="0" alt="image" src="http://geekswithblogs.net/images/geekswithblogs_net/imilovanovic/WindowsLiveWriter/WorkingwithVisualStudioWebDevelopmentSer_143C5/image_thumb_5.png" width="244" height="163" /&gt;&lt;/a&gt;&lt;/p&gt;  &lt;p&gt; &lt;/p&gt;  &lt;p&gt; &lt;/p&gt;  &lt;p&gt; &lt;/p&gt;  &lt;p&gt; &lt;/p&gt;  &lt;p&gt; &lt;/p&gt;  &lt;p&gt; &lt;/p&gt;  &lt;p&gt; &lt;/p&gt;  &lt;p&gt; &lt;/p&gt;  &lt;p&gt;   &lt;/p&gt;  &lt;p&gt;The next problem you will confront now is that you can’t connect to the webdev server which is running on your local machine. This is because web development server is crippled to allow only local connections for security reasons. In order to trick webdev in believing that the requests are coming from local machine itself you can use a light weight proxy like &lt;a href="http://privoxy.org"&gt;privoxy&lt;/a&gt; on your host (windows 7) machine and configure the IE6 running in the virtual host.&lt;/p&gt;  &lt;p&gt;  &lt;br /&gt;The first step is to make the host machine (running windows 7) reachable from the virtual machine (running XP). In order to do that install the loopback adapter and configure it to use an IP which is routable from the virtual machine.  &lt;br /&gt; &lt;/p&gt;  &lt;p&gt;[3] &lt;a href="http://www.windowsreference.com/windows-7/how-to-install-a-loopback-adapter-in-windows-7/"&gt;How to install loopback adapter in Windows 7&lt;/a&gt;&lt;/p&gt;  &lt;p&gt; &lt;/p&gt;  &lt;p&gt;After installation, assign a static IP which is routable from the virtual machine (in example 192.168.1.66)&lt;/p&gt;  &lt;p&gt;&lt;a href="http://geekswithblogs.net/images/geekswithblogs_net/imilovanovic/WindowsLiveWriter/WorkingwithVisualStudioWebDevelopmentSer_143C5/image_5.png" rel="lightbox"&gt;&lt;img style="border-right-width: 0px; display: inline; border-top-width: 0px; border-bottom-width: 0px; border-left-width: 0px" title="image" border="0" alt="image" src="http://geekswithblogs.net/images/geekswithblogs_net/imilovanovic/WindowsLiveWriter/WorkingwithVisualStudioWebDevelopmentSer_143C5/image_thumb_1.png" width="244" height="146" /&gt;&lt;/a&gt; &lt;/p&gt;  &lt;p&gt; &lt;/p&gt;  &lt;p&gt; &lt;/p&gt;  &lt;p&gt; &lt;/p&gt;  &lt;p&gt; &lt;/p&gt;  &lt;p&gt; &lt;/p&gt;  &lt;p&gt; &lt;/p&gt;  &lt;p&gt; &lt;/p&gt;  &lt;p&gt;  &lt;/p&gt;  &lt;p&gt;The next step is to configure privoxy to listen on that IP address (using some not used port) .Change following line in config.txt:&lt;/p&gt;  &lt;p&gt; &lt;/p&gt;  &lt;blockquote&gt;   &lt;p&gt;#      &lt;br /&gt;#      Suppose you are running Privoxy on an IPv6-capable machine and       &lt;br /&gt;#      you want it to listen on the IPv6 address of the loopback device:       &lt;br /&gt;#       &lt;br /&gt;#        listen-address [::1]:8118       &lt;br /&gt;#       &lt;br /&gt;#       &lt;br /&gt;&lt;strong&gt;listen-address  192.168.1.66:8118&lt;/strong&gt;&lt;/p&gt; &lt;/blockquote&gt;  &lt;p&gt; &lt;/p&gt;  &lt;p&gt;The last step is to configure the IE6 to use Privoxy which is running on your Windows 7 host machine as proxy for all addresses (including localhost)&lt;/p&gt;  &lt;p&gt; &lt;/p&gt;  &lt;p&gt;&lt;a href="http://geekswithblogs.net/images/geekswithblogs_net/imilovanovic/WindowsLiveWriter/WorkingwithVisualStudioWebDevelopmentSer_143C5/image_7.png" rel="lightbox"&gt;&lt;img style="border-right-width: 0px; display: inline; border-top-width: 0px; border-bottom-width: 0px; border-left-width: 0px" title="image" border="0" alt="image" src="http://geekswithblogs.net/images/geekswithblogs_net/imilovanovic/WindowsLiveWriter/WorkingwithVisualStudioWebDevelopmentSer_143C5/image_thumb_2.png" width="228" height="244" /&gt;&lt;/a&gt;&lt;/p&gt;  &lt;p&gt; &lt;/p&gt;  &lt;p&gt; &lt;/p&gt;  &lt;p&gt; &lt;/p&gt;  &lt;p&gt; &lt;/p&gt;  &lt;p&gt; &lt;/p&gt;  &lt;p&gt; &lt;/p&gt;  &lt;p&gt; &lt;/p&gt;  &lt;p&gt; &lt;/p&gt;  &lt;p&gt; &lt;/p&gt;  &lt;p&gt; &lt;/p&gt;  &lt;p&gt; &lt;/p&gt;  &lt;p&gt; &lt;/p&gt;  &lt;p&gt; And now you can use your Windows7 XP Mode IE6 to connect to your Visual Studio’s webdev web server. &lt;/p&gt;  &lt;p&gt; &lt;/p&gt;  &lt;p&gt;&lt;a href="http://geekswithblogs.net/images/geekswithblogs_net/imilovanovic/WindowsLiveWriter/WorkingwithVisualStudioWebDevelopmentSer_143C5/image_11.png" rel="lightbox"&gt;&lt;img style="border-right-width: 0px; display: inline; border-top-width: 0px; border-bottom-width: 0px; border-left-width: 0px" title="image" border="0" alt="image" src="http://geekswithblogs.net/images/geekswithblogs_net/imilovanovic/WindowsLiveWriter/WorkingwithVisualStudioWebDevelopmentSer_143C5/image_thumb_4.png" width="244" height="154" /&gt;&lt;/a&gt;&lt;/p&gt;  &lt;p&gt; &lt;/p&gt;  &lt;p&gt; &lt;/p&gt;  &lt;p&gt; &lt;/p&gt;  &lt;p&gt; &lt;/p&gt;  &lt;p&gt; &lt;/p&gt;  &lt;p&gt; &lt;/p&gt;  &lt;p&gt; &lt;/p&gt;  &lt;p&gt; &lt;/p&gt;  &lt;p&gt;  &lt;/p&gt;  &lt;p&gt;[4] &lt;a title="http://stackoverflow.com/questions/683151/connect-remotely-to-webdev-webserver-exe" href="http://stackoverflow.com/questions/683151/connect-remotely-to-webdev-webserver-exe"&gt;http://stackoverflow.com/questions/683151/connect-remotely-to-webdev-webserver-exe&lt;/a&gt;&lt;/p&gt;&lt;img src="http://geekswithblogs.net/imilovanovic/aggbug/139521.aspx" width="1" height="1" /&gt;</content>
        <wfw:comment>http://geekswithblogs.net/imilovanovic/comments/139521.aspx</wfw:comment>
        <slash:comments>0</slash:comments>
        <wfw:commentRss>http://geekswithblogs.net/imilovanovic/comments/commentRss/139521.aspx</wfw:commentRss>
        <trackback:ping>http://geekswithblogs.net/imilovanovic/services/trackbacks/139521.aspx</trackback:ping>
    </entry>
    <entry>
        <title>.NET Day Franken Community Conference </title>
        <link rel="self" type="text/html" href="http://geekswithblogs.net/imilovanovic/archive/2010/04/13/netdayfrankencommunityconference.aspx" />
        <id>http://geekswithblogs.net/imilovanovic/archive/2010/04/13/netdayfrankencommunityconference.aspx</id>
        <published>2010-04-13T11:21:0402:00:00</published>
        <updated>2010-04-13T11:28:53Z</updated>
        <content type="html">&lt;p&gt; &lt;/p&gt;
&lt;p&gt;The &lt;a href="http://www.dotnet-day-franken.de/Sprecher.html"&gt;call for papers &lt;/a&gt;for the first franconian .NET community conference is open.&lt;/p&gt;
&lt;p&gt;[1] &lt;a href="http://www.dotnet-day-franken.de/Sprecher.html"&gt;http://www.dotnet-day-franken.de/Sprecher.html&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;&lt;a target="_blank" href="http://www.dotnet-day-franken.de"&gt;&lt;img title="Hier finden Sie mehr Informationen über den .NET Day Franken" border="0" alt="" src="http://www.dotnet-day-franken.de/banner/NetDayFranken2010_468x60.png" /&gt;&lt;/a&gt;&lt;/p&gt;
&lt;p&gt; &lt;/p&gt;
&lt;p&gt; &lt;/p&gt;
&lt;p&gt; &lt;/p&gt;
&lt;p&gt; &lt;/p&gt;&lt;img src="http://geekswithblogs.net/imilovanovic/aggbug/139227.aspx" width="1" height="1" /&gt;</content>
        <wfw:comment>http://geekswithblogs.net/imilovanovic/comments/139227.aspx</wfw:comment>
        <slash:comments>1</slash:comments>
        <wfw:commentRss>http://geekswithblogs.net/imilovanovic/comments/commentRss/139227.aspx</wfw:commentRss>
        <trackback:ping>http://geekswithblogs.net/imilovanovic/services/trackbacks/139227.aspx</trackback:ping>
    </entry>
    <entry>
        <title>.NET UG Franken - Microsoft ASP.NET MVC Framework</title>
        <link rel="self" type="text/html" href="http://geekswithblogs.net/imilovanovic/archive/2009/06/15/net-ug-franken---microsoft-asp.net-mvc-framework.aspx" />
        <id>http://geekswithblogs.net/imilovanovic/archive/2009/06/15/net-ug-franken---microsoft-asp.net-mvc-framework.aspx</id>
        <published>2009-06-15T07:36:3302:00:00</published>
        <updated>2009-06-15T07:47:07Z</updated>
        <content type="html">Am 23. Juni 2009 ab 19:00 Uhr wird das kommende Treffen der dodned User Group Franken stattfinden.
&lt;p&gt;Der Vortrag von Albert Weinert: &lt;/p&gt;
&lt;p&gt;Das ASP.NET MVC Framework &lt;/p&gt;
&lt;p&gt;Das ASP.NET MVC ist eine weitere Säule des ASP.NET Framework. Lauffähig ab .net 3.5 bringt es einen anderen Ansatz in die Web-Entwicklung. Seperation-Of-Concerns ist das große Leitbild unter welchem ASP.NET MVC entwickelt worden und und wie man dafür entwickelt. &lt;/p&gt;
&lt;p&gt;Gegenüber ASP.NET WebForms ist eine ganz andere Entwicklungsart, dieser Vortrag bringt Ihnen die Vorteile von ASP.NET MVC näher. Es wird erklärt wie es sich in die ASP.NET Pipeline einfügt, wie man eigenen Erweiterungen vornimmt und Web-Anwendungen mit sauberen Prinzipien entwickeln kann.&lt;/p&gt;
&lt;p&gt;Ort: &lt;/p&gt;
&lt;p&gt;&lt;a href="http://www.evosoft.com"&gt;&lt;img width="142" height="51" alt="" src="/images/geekswithblogs_net/imilovanovic/evosoft.png" /&gt;&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;&lt;span style="mso-no-proof: yes"&gt;&lt;o:p&gt;&lt;strong&gt;&lt;/strong&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span style="mso-no-proof: yes"&gt;&lt;o:p&gt;&lt;strong&gt;evosoft GmbH&lt;br /&gt;
&lt;/strong&gt;Fürtherstr. 212&lt;br /&gt;
D-90429 Nürnberg&lt;br /&gt;
&lt;/o:p&gt;&lt;/span&gt;
&lt;/p&gt;&lt;p style="MARGIN: 0cm 0cm 0pt" class="MsoNormal"&gt;&lt;span style="mso-no-proof: yes"&gt;&lt;o:p&gt;Parkplätze gibt es &lt;a href="http://maps.google.com/maps/ms?msa=0&amp;amp;msid=110878586737647633249.00044e3270a418fb927e1&amp;amp;cd=2&amp;amp;hl=de&amp;amp;ie=UTF8&amp;amp;ll=49.460231,11.035042&amp;amp;spn=0.002336,0.006062&amp;amp;t=h&amp;amp;z=18"&gt;hier&lt;/a&gt; (mit Evosoft GmbH ausgeschildert).&lt;/o:p&gt;&lt;/span&gt; &lt;/p&gt;
&lt;p&gt; &lt;/p&gt;
&lt;p&gt; &lt;/p&gt;
&lt;p&gt;Weitere Informationen:&lt;/p&gt;
&lt;p&gt;[1] .NET User Group Seiten &lt;a href="http://www.dodned.de"&gt;http://www.dodned.de&lt;/a&gt;&lt;br /&gt;
[2] Event Seiten und Anmeldung : &lt;a href="http://dodnedderImJuni09.events.live.com/"&gt;http://dodnedderImJuni09.events.live.com/&lt;/a&gt;&lt;br /&gt;
[3] Blog von Albert Weinert : &lt;font face=""&gt;&lt;a href="http://der-albert.com/"&gt;http://der-albert.com/&lt;/a&gt;&lt;/font&gt;&lt;/p&gt;
&lt;p&gt; &lt;/p&gt;
&lt;p&gt; &lt;/p&gt;
&lt;p&gt; &lt;/p&gt;
&lt;img src="http://geekswithblogs.net/imilovanovic/aggbug/132814.aspx" width="1" height="1" /&gt;</content>
        <wfw:comment>http://geekswithblogs.net/imilovanovic/comments/132814.aspx</wfw:comment>
        <slash:comments>2</slash:comments>
        <wfw:commentRss>http://geekswithblogs.net/imilovanovic/comments/commentRss/132814.aspx</wfw:commentRss>
        <trackback:ping>http://geekswithblogs.net/imilovanovic/services/trackbacks/132814.aspx</trackback:ping>
    </entry>
    <entry>
        <title>Team Conf 2008 in Munich - Agile Software Development with Scrum for Team System</title>
        <link rel="self" type="text/html" href="http://geekswithblogs.net/imilovanovic/archive/2008/01/28/118989.aspx" />
        <id>http://geekswithblogs.net/imilovanovic/archive/2008/01/28/118989.aspx</id>
        <published>2008-01-28T13:00:3301:00:00</published>
        <updated>2010-06-23T14:45:04Z</updated>
        <content type="html">&lt;p&gt;I will speak about agile software development with scrum for team system at the &lt;a href="http://www.teamconf.de"&gt;team conf 2008&lt;/a&gt; in munich. The conference is organized in cooperation of &lt;a href="http://www.hlmc.de"&gt;hlmc events&lt;/a&gt; and &lt;a href="http://www.ix.de"&gt;german it magazine ix&lt;/a&gt;.&lt;/p&gt;
&lt;p&gt;[1] &lt;font face="Arial"&gt;&lt;a href="http://www.teamconf.de/startseite/"&gt;http://www.teamconf.de/startseite/&lt;/a&gt;&lt;br /&gt;
[2] &lt;font face="Arial"&gt;&lt;a href="http://www.teamconf.de/anwendervortraege/evosoft-gmbh/"&gt;http://www.teamconf.de/anwendervortraege/evosoft-gmbh/&lt;/a&gt;&lt;/font&gt;&lt;/font&gt;&lt;/p&gt;
&lt;p&gt;&lt;font face="Arial"&gt;&lt;font face="Arial"&gt;&lt;br /&gt;
 &lt;/font&gt;&lt;/font&gt;
&lt;/p&gt;&lt;p&gt; &lt;/p&gt;
&lt;img src="http://geekswithblogs.net/imilovanovic/aggbug/118989.aspx" width="1" height="1" /&gt;</content>
        <wfw:comment>http://geekswithblogs.net/imilovanovic/comments/118989.aspx</wfw:comment>
        <slash:comments>5</slash:comments>
        <wfw:commentRss>http://geekswithblogs.net/imilovanovic/comments/commentRss/118989.aspx</wfw:commentRss>
        <trackback:ping>http://geekswithblogs.net/imilovanovic/services/trackbacks/118989.aspx</trackback:ping>
    </entry>
</feed>
