<?xml version="1.0" encoding="UTF-8" ?>
<?xml-stylesheet type="text/xsl" href="http://blogs.msdn.com/utility/FeedStylesheets/rss.xsl" media="screen"?><rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:slash="http://purl.org/rss/1.0/modules/slash/" xmlns:wfw="http://wellformedweb.org/CommentAPI/"><channel><title>michal.Log : General</title><link>http://blogs.msdn.com/michalma/archive/tags/General/default.aspx</link><description>Tags: General</description><dc:language>en</dc:language><generator>CommunityServer 2.1 SP1 (Build: 61025.2)</generator><item><title>Cool tracing with Visual Studio</title><link>http://blogs.msdn.com/michalma/archive/2007/05/28/cool-tracing-with-visual-studio.aspx</link><pubDate>Mon, 28 May 2007 21:15:00 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:2949316</guid><dc:creator>michalma</dc:creator><slash:comments>1</slash:comments><comments>http://blogs.msdn.com/michalma/comments/2949316.aspx</comments><wfw:commentRss>http://blogs.msdn.com/michalma/commentrss.aspx?PostID=2949316</wfw:commentRss><description>&lt;p&gt;Because we are preparing Beta2 of Orcas, I started spending more and more time with the debugger and with tracing enabled in our OM (vide: &lt;a href="http://blogs.msdn.com/michalma/archive/2006/12/08/tracing-in-tfs-msscci-provider.aspx" mce_href="http://blogs.msdn.com/michalma/archive/2006/12/08/tracing-in-tfs-msscci-provider.aspx"&gt;http://blogs.msdn.com/michalma/archive/2006/12/08/tracing-in-tfs-msscci-provider.aspx&lt;/a&gt;). As we all know there are 2 listeners we usually use - file listeners, that dumps everything into file and perf listener that pops up cool dialog, but lacks details. You can imagine my surprise when I discovered that just by attaching the debugger to the running app, we add yet another listener - one that dumps everything into Output Window in VS. It's very cool, because while stepping through the code we can immediately see what kind of server calls where made. At first I wasn't sure if this is not some kind of magic Buck put into our OM. But no - even in the simplest application, when you put &lt;/p&gt;&lt;p&gt;Trace.TraceInformation("Hola Mundo!");&lt;/p&gt;&lt;p&gt;it will be written in the Output Window. Cool :)&amp;nbsp;&lt;/p&gt;&lt;img src="http://blogs.msdn.com/aggbug.aspx?PostID=2949316" width="1" height="1"&gt;</description><category domain="http://blogs.msdn.com/michalma/archive/tags/General/default.aspx">General</category></item><item><title>Switching between multiple Msscci providers</title><link>http://blogs.msdn.com/michalma/archive/2006/03/01/541255.aspx</link><pubDate>Wed, 01 Mar 2006 17:15:00 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:541255</guid><dc:creator>michalma</dc:creator><slash:comments>6</slash:comments><comments>http://blogs.msdn.com/michalma/comments/541255.aspx</comments><wfw:commentRss>http://blogs.msdn.com/michalma/commentrss.aspx?PostID=541255</wfw:commentRss><description>&lt;P&gt;People who start using TFS Msscci provider, usually want to keep working with the old provider (e.g. SourceSafe). Unfortunately, function to switch between different multiple Msscci providers is feature of the IDE, not of the provider. VB6, VC6 and VS 2003 does not support it, only FoxPro guys are lucky. As the workaround I would suggest the following solutions:&lt;/P&gt;
&lt;OL&gt;
&lt;LI&gt;Manual changing of the registry.&lt;BR&gt;Msscci configuration lives in registry, in &lt;EM&gt;HKEY_LOCAL_MACHINE\SOFTWARE\SourceCodeControlProvider&lt;/EM&gt;&lt;BR&gt;What is important for VB6, VC6 and VS2003 users is value of &lt;EM&gt;ProviderRegKey&lt;/EM&gt;, which stores the location of the default provider. Every provider is also registering it's location under &lt;BR&gt;&lt;EM&gt;HKEY_LOCAL_MACHINE\SOFTWARE\SourceCodeControlProvider\InstalledSCCProviders&lt;BR&gt;&lt;/EM&gt;So the simplest way to change the current Msscci provider is to copy it's location from &lt;EM&gt;InstalledSCCProviders&lt;/EM&gt; (e.g. Software\Microsoft\SourceSafe) and paste it into &lt;EM&gt;ProviderRegKey&lt;/EM&gt;. 
&lt;LI&gt;Registry script&lt;BR&gt;Prepare registry script that will do the job:&lt;BR&gt;&lt;EM&gt;Windows Registry Editor Version 5.00[HKEY_LOCAL_MACHINE\SOFTWARE\SourceCodeControlProvider]&lt;BR&gt;"ProviderRegKey"="Software\\Microsoft\\SourceSafe"&lt;/EM&gt; 
&lt;LI&gt;Powertoy&lt;BR&gt;Of course the best way would be to use small application, leaving in the system tray, which would let us change the value of &lt;EM&gt;ProviderRegKey&lt;/EM&gt;.&lt;/LI&gt;&lt;/OL&gt;
&lt;P&gt;Of course playing with system registry is dangerous, do it on your own risk,&lt;/P&gt;
&lt;P&gt;&lt;STRONG&gt;UPDATE 5/31/2006&lt;/STRONG&gt;&lt;/P&gt;
&lt;P&gt;Two tools which allow to change default Msscci provider were mentioned in the &lt;A href="http://forums.microsoft.com/MSDN/ShowPost.aspx?PostID=439039&amp;amp;SiteID=1"&gt;msdn's forum&lt;/A&gt;:&lt;/P&gt;
&lt;UL&gt;
&lt;LI&gt;&lt;A href="http://www.codeproject.com/tools/sccswitcher.asp"&gt;Sourcecode Control Switcher&lt;/A&gt;&lt;/LI&gt;
&lt;LI&gt;&lt;A href="http://sharptoolbox.com/tools/sccswitch"&gt;SccSwitch&lt;/A&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;img src="http://blogs.msdn.com/aggbug.aspx?PostID=541255" width="1" height="1"&gt;</description><category domain="http://blogs.msdn.com/michalma/archive/tags/General/default.aspx">General</category><category domain="http://blogs.msdn.com/michalma/archive/tags/Team+Foundation+Server/default.aspx">Team Foundation Server</category></item><item><title>Applying for job at MS</title><link>http://blogs.msdn.com/michalma/archive/2006/02/22/537233.aspx</link><pubDate>Wed, 22 Feb 2006 23:41:00 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:537233</guid><dc:creator>michalma</dc:creator><slash:comments>0</slash:comments><comments>http://blogs.msdn.com/michalma/comments/537233.aspx</comments><wfw:commentRss>http://blogs.msdn.com/michalma/commentrss.aspx?PostID=537233</wfw:commentRss><description>&lt;P class=MsoNormal style="MARGIN: 0in 0in 0pt"&gt;Some folks from &lt;?xml:namespace prefix = st1 ns = "urn:schemas-microsoft-com:office:smarttags" /&gt;&lt;st1:place w:st="on"&gt;&lt;st1:country-region w:st="on"&gt;Poland&lt;/st1:country-region&gt;&lt;/st1:place&gt; have asked me about recruitment process and applying for Microsoft. I’ll post it in English because&lt;/P&gt;
&lt;UL&gt;
&lt;LI&gt;
&lt;DIV class=MsoNormal style="MARGIN: 0in 0in 0pt 0.5in; TEXT-INDENT: -0.25in; mso-list: l0 level1 lfo1; tab-stops: list .5in"&gt;&lt;SPAN style="mso-list: Ignore"&gt;&lt;SPAN style="FONT: 7pt 'Times New Roman'"&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/SPAN&gt;other people can use those information&lt;/DIV&gt;&lt;/LI&gt;
&lt;LI&gt;
&lt;DIV class=MsoNormal style="MARGIN: 0in 0in 0pt 0.5in; TEXT-INDENT: -0.25in; mso-list: l0 level1 lfo1; tab-stops: list .5in"&gt;&lt;SPAN style="mso-list: Ignore"&gt;&lt;SPAN style="FONT: 7pt 'Times New Roman'"&gt;&amp;nbsp; &lt;/SPAN&gt;&lt;/SPAN&gt;you &lt;B style="mso-bidi-font-weight: normal"&gt;must&lt;/B&gt; know English to apply (and to be successful Software Engineer at all)&lt;/DIV&gt;&lt;/LI&gt;&lt;/UL&gt;
&lt;P class=MsoNormal style="MARGIN: 0in 0in 0pt"&gt;I can tell only about after college recruitment, because this is the one I took part in. There are two ways. You can check &lt;A href="http://www.microsoft.com/College/default.mspx"&gt;career site&amp;nbsp;&lt;/A&gt;for the first one. The second (and probably easier) is (and this was my path) to be recommended by somebody who is already taking part in the recruitment process. If you study on &lt;A href="http://www.put.poznan.pl/"&gt;Poznan University of Technology &lt;/A&gt;it shouldn’t be big problem (there are always a few people who have won international competitions :) When you invited for interview, remember that what really matters is how you &lt;B style="mso-bidi-font-weight: normal"&gt;think&lt;/B&gt;. I was Java acolyte and didn’t have idea about any C++/.net features and libraries (except what I read on Java forums ;)). Only some basic knowledge of C is required.&lt;/P&gt;
&lt;P class=MsoNormal style="MARGIN: 0in 0in 0pt"&gt;Good luck&lt;/P&gt;&lt;img src="http://blogs.msdn.com/aggbug.aspx?PostID=537233" width="1" height="1"&gt;</description><category domain="http://blogs.msdn.com/michalma/archive/tags/General/default.aspx">General</category></item><item><title>Please allow me to introduce myself</title><link>http://blogs.msdn.com/michalma/archive/2006/02/19/535168.aspx</link><pubDate>Mon, 20 Feb 2006 02:08:00 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:535168</guid><dc:creator>michalma</dc:creator><slash:comments>2</slash:comments><comments>http://blogs.msdn.com/michalma/comments/535168.aspx</comments><wfw:commentRss>http://blogs.msdn.com/michalma/commentrss.aspx?PostID=535168</wfw:commentRss><description>&lt;P class=MsoNormal style="MARGIN: 0in 0in 0pt"&gt;&lt;SPAN lang=EN-US style="mso-ansi-language: EN-US"&gt;I’m currently Software Development Engineer in Team Foundation Version Control Client team. I work for Microsoft, on the client-side, on the .NET platform, in &lt;?xml:namespace prefix = st1 ns = "urn:schemas-microsoft-com:office:smarttags" /&gt;&lt;st1:country-region w:st="on"&gt;&lt;st1:place w:st="on"&gt;USA&lt;/st1:place&gt;&lt;/st1:country-region&gt; just for few months (since October 2005). Before I was learning, studying and working in beautify city &lt;st1:City w:st="on"&gt;Poznan&lt;/st1:City&gt;, in western &lt;st1:country-region w:st="on"&gt;&lt;st1:place w:st="on"&gt;Poland&lt;/st1:place&gt;&lt;/st1:country-region&gt;. I used to work on the GRID enabled projects, web applications (PHP and few Java frameworks) and mobile tools. As you can see it was quite a change for me (and still is ;) &lt;?xml:namespace prefix = o ns = "urn:schemas-microsoft-com:office:office" /&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P class=MsoNormal style="MARGIN: 0in 0in 0pt"&gt;&lt;SPAN lang=EN-US style="mso-ansi-language: EN-US"&gt;&lt;STRONG&gt;What I will be blogging about?&lt;o:p&gt;&lt;/o:p&gt;&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P class=MsoNormal style="MARGIN: 0in 0in 0pt"&gt;&lt;SPAN lang=EN-US style="mso-ansi-language: EN-US"&gt;A few things. First of all – Msscci provider for Team Foundation Server, my first task in MS. The work on it is really challenging and I hope that it’ll let users of many different IDEs experience the power of TFS. Second – everything that is connected to .net, C#, Visual Studio. Third – who knows, this is a blog, right?&lt;o:p&gt;&lt;/o:p&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;img src="http://blogs.msdn.com/aggbug.aspx?PostID=535168" width="1" height="1"&gt;</description><category domain="http://blogs.msdn.com/michalma/archive/tags/General/default.aspx">General</category></item></channel></rss>