<?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>Tips of the Day on .NET : Visual Studio</title><link>http://blogs.msdn.com/tolong/archive/tags/Visual+Studio/default.aspx</link><description>Tags: Visual Studio</description><dc:language>en</dc:language><generator>CommunityServer 2.1 SP1 (Build: 61025.2)</generator><item><title>How to reserve the URLs to host the WCF service</title><link>http://blogs.msdn.com/tolong/archive/2007/11/23/how-to-reserve-the-urls-to-host-the-wcf-service.aspx</link><pubDate>Fri, 23 Nov 2007 11:43:00 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:6480619</guid><dc:creator>tolong</dc:creator><slash:comments>1</slash:comments><comments>http://blogs.msdn.com/tolong/comments/6480619.aspx</comments><wfw:commentRss>http://blogs.msdn.com/tolong/commentrss.aspx?PostID=6480619</wfw:commentRss><description>Run into this error when running your WCF service? This is because you have not reserve the url to host your WCF service. Try this solution: 1. Open a Command Prompt as Administrator 2. Execute this command : netsh http add urlacl url=htpp://+:8080/ user=User...(&lt;a href="http://blogs.msdn.com/tolong/archive/2007/11/23/how-to-reserve-the-urls-to-host-the-wcf-service.aspx"&gt;read more&lt;/a&gt;)&lt;img src="http://blogs.msdn.com/aggbug.aspx?PostID=6480619" width="1" height="1"&gt;</description><category domain="http://blogs.msdn.com/tolong/archive/tags/General+.NET+/default.aspx">General .NET </category><category domain="http://blogs.msdn.com/tolong/archive/tags/Visual+Studio/default.aspx">Visual Studio</category><category domain="http://blogs.msdn.com/tolong/archive/tags/Windows+Communication+Foundation/default.aspx">Windows Communication Foundation</category></item><item><title>Visual Studio 2008 is RTM!!</title><link>http://blogs.msdn.com/tolong/archive/2007/11/20/visual-studio-2008-rtm.aspx</link><pubDate>Tue, 20 Nov 2007 05:39:00 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:6418231</guid><dc:creator>tolong</dc:creator><slash:comments>1</slash:comments><comments>http://blogs.msdn.com/tolong/comments/6418231.aspx</comments><wfw:commentRss>http://blogs.msdn.com/tolong/commentrss.aspx?PostID=6418231</wfw:commentRss><description>Yesterday at TechEd Europe we announced that Visual Studio 2008 and the .NET Framework 3.5 will be released by the end of November. There are some video recordings on the Channel 9: Lap around Visual Studio 2008 &amp;amp; .NET Framework 3.5 What's new in...(&lt;a href="http://blogs.msdn.com/tolong/archive/2007/11/20/visual-studio-2008-rtm.aspx"&gt;read more&lt;/a&gt;)&lt;img src="http://blogs.msdn.com/aggbug.aspx?PostID=6418231" width="1" height="1"&gt;</description><category domain="http://blogs.msdn.com/tolong/archive/tags/Visual+Studio+Team+System/default.aspx">Visual Studio Team System</category><category domain="http://blogs.msdn.com/tolong/archive/tags/General+.NET+/default.aspx">General .NET </category><category domain="http://blogs.msdn.com/tolong/archive/tags/Visual+Studio/default.aspx">Visual Studio</category></item><item><title>Read / Write XML in Memory Stream</title><link>http://blogs.msdn.com/tolong/archive/2007/11/15/read-write-xml-in-memory-stream.aspx</link><pubDate>Thu, 15 Nov 2007 11:29:00 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:6249514</guid><dc:creator>tolong</dc:creator><slash:comments>1</slash:comments><comments>http://blogs.msdn.com/tolong/comments/6249514.aspx</comments><wfw:commentRss>http://blogs.msdn.com/tolong/commentrss.aspx?PostID=6249514</wfw:commentRss><description>Use the XmlWriter to write XML to Memory Stream: MemoryStream stream = new MemoryStream (); XmlWriter writer = XmlWriter .Create(stream); http://msdn2.microsoft.com/en-us/library/ms162617.aspx or you can use the XmlDocument to save xml document to specific...(&lt;a href="http://blogs.msdn.com/tolong/archive/2007/11/15/read-write-xml-in-memory-stream.aspx"&gt;read more&lt;/a&gt;)&lt;img src="http://blogs.msdn.com/aggbug.aspx?PostID=6249514" width="1" height="1"&gt;</description><category domain="http://blogs.msdn.com/tolong/archive/tags/General+.NET+/default.aspx">General .NET </category><category domain="http://blogs.msdn.com/tolong/archive/tags/Visual+Studio/default.aspx">Visual Studio</category><category domain="http://blogs.msdn.com/tolong/archive/tags/Tips+_2600_amp_3B00_+Tricks/default.aspx">Tips &amp;amp; Tricks</category></item><item><title>Migrate Application from .Net 1.1 to .Net 2.0</title><link>http://blogs.msdn.com/tolong/archive/2007/10/31/migrate-application-from-net-1-1-to-net-2-0.aspx</link><pubDate>Wed, 31 Oct 2007 06:08:00 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:5789937</guid><dc:creator>tolong</dc:creator><slash:comments>1</slash:comments><comments>http://blogs.msdn.com/tolong/comments/5789937.aspx</comments><wfw:commentRss>http://blogs.msdn.com/tolong/commentrss.aspx?PostID=5789937</wfw:commentRss><description>There are numerous API changes on .net framework 2.0 compare to .net framework 1.1. http://msdn2.microsoft.com/en-us/netframework/Aa570326.aspx Therefore, the application that target on .net framework 1.1 might not work properly on .net framework 2.0....(&lt;a href="http://blogs.msdn.com/tolong/archive/2007/10/31/migrate-application-from-net-1-1-to-net-2-0.aspx"&gt;read more&lt;/a&gt;)&lt;img src="http://blogs.msdn.com/aggbug.aspx?PostID=5789937" width="1" height="1"&gt;</description><category domain="http://blogs.msdn.com/tolong/archive/tags/General+.NET+/default.aspx">General .NET </category><category domain="http://blogs.msdn.com/tolong/archive/tags/Visual+Studio/default.aspx">Visual Studio</category></item><item><title>Installing .net framework 2.0 will ovewrite the version 1.1?</title><link>http://blogs.msdn.com/tolong/archive/2007/10/31/installing-net-framework-2-0-will-ovewrite-the-version-1-1.aspx</link><pubDate>Wed, 31 Oct 2007 06:04:00 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:5789928</guid><dc:creator>tolong</dc:creator><slash:comments>1</slash:comments><comments>http://blogs.msdn.com/tolong/comments/5789928.aspx</comments><wfw:commentRss>http://blogs.msdn.com/tolong/commentrss.aspx?PostID=5789928</wfw:commentRss><description>When you install the .NET Framework, two different types of configuration files are installed, machine configuration files and security policy configuration files. In a side-by-side installation environment, you can install multiple versions of the .NET...(&lt;a href="http://blogs.msdn.com/tolong/archive/2007/10/31/installing-net-framework-2-0-will-ovewrite-the-version-1-1.aspx"&gt;read more&lt;/a&gt;)&lt;img src="http://blogs.msdn.com/aggbug.aspx?PostID=5789928" width="1" height="1"&gt;</description><category domain="http://blogs.msdn.com/tolong/archive/tags/General+.NET+/default.aspx">General .NET </category><category domain="http://blogs.msdn.com/tolong/archive/tags/Visual+Studio/default.aspx">Visual Studio</category></item><item><title>Mark your way to becoming a .NET Expert TODAY!!</title><link>http://blogs.msdn.com/tolong/archive/2007/10/18/mark-your-way-to-becoming-a-net-expert-today.aspx</link><pubDate>Thu, 18 Oct 2007 09:35:00 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:5505441</guid><dc:creator>tolong</dc:creator><slash:comments>1</slash:comments><comments>http://blogs.msdn.com/tolong/comments/5505441.aspx</comments><wfw:commentRss>http://blogs.msdn.com/tolong/commentrss.aspx?PostID=5505441</wfw:commentRss><description>Interested in learning the latest programming language that drives the industry today? Develop the latest games, the coolest applications and much more with Microsoft's .NET platform! It doesn't matter if you've been tooling around with Java, PHP, COBOL,...(&lt;a href="http://blogs.msdn.com/tolong/archive/2007/10/18/mark-your-way-to-becoming-a-net-expert-today.aspx"&gt;read more&lt;/a&gt;)&lt;img src="http://blogs.msdn.com/aggbug.aspx?PostID=5505441" width="1" height="1"&gt;</description><category domain="http://blogs.msdn.com/tolong/archive/tags/General+.NET+/default.aspx">General .NET </category><category domain="http://blogs.msdn.com/tolong/archive/tags/ASP.net/default.aspx">ASP.net</category><category domain="http://blogs.msdn.com/tolong/archive/tags/Visual+Studio/default.aspx">Visual Studio</category><category domain="http://blogs.msdn.com/tolong/archive/tags/SilverLight/default.aspx">SilverLight</category></item><item><title>Tips &amp; Tricks on Visual Studio 2008 - I</title><link>http://blogs.msdn.com/tolong/archive/2007/09/19/tips-tricks-on-visual-studio-2008-i.aspx</link><pubDate>Wed, 19 Sep 2007 08:04:00 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:4992920</guid><dc:creator>tolong</dc:creator><slash:comments>1</slash:comments><comments>http://blogs.msdn.com/tolong/comments/4992920.aspx</comments><wfw:commentRss>http://blogs.msdn.com/tolong/commentrss.aspx?PostID=4992920</wfw:commentRss><description>Tip 1: Multi Target Framework In Visual Studio 2008, you have the option to choose which target framework for your application, either version 2.0 [Shipped with Visual Studio 2005], 3.0 [Shipped with Vista] or 3.5 [shipped with Visual studio 2008]. You...(&lt;a href="http://blogs.msdn.com/tolong/archive/2007/09/19/tips-tricks-on-visual-studio-2008-i.aspx"&gt;read more&lt;/a&gt;)&lt;img src="http://blogs.msdn.com/aggbug.aspx?PostID=4992920" width="1" height="1"&gt;</description><category domain="http://blogs.msdn.com/tolong/archive/tags/General+.NET+/default.aspx">General .NET </category><category domain="http://blogs.msdn.com/tolong/archive/tags/Visual+Studio/default.aspx">Visual Studio</category><category domain="http://blogs.msdn.com/tolong/archive/tags/Tips+_2600_amp_3B00_+Tricks/default.aspx">Tips &amp;amp; Tricks</category></item><item><title>COM+ Event System detected a bad return code during its internal processing</title><link>http://blogs.msdn.com/tolong/archive/2007/07/06/com-event-system-detected-a-bad-return-code-during-its-internal-processing.aspx</link><pubDate>Fri, 06 Jul 2007 10:06:00 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:3722454</guid><dc:creator>tolong</dc:creator><slash:comments>1</slash:comments><comments>http://blogs.msdn.com/tolong/comments/3722454.aspx</comments><wfw:commentRss>http://blogs.msdn.com/tolong/commentrss.aspx?PostID=3722454</wfw:commentRss><description>What does this error message mean? " The COM+ Event System detected a bad return code during its internal processing. HRESULT was C0000005 from line 44 of d:\qxp_slp\com\com1x\src\events\tier1\eventsystemobj.cpp." The weird thing is that there is no d...(&lt;a href="http://blogs.msdn.com/tolong/archive/2007/07/06/com-event-system-detected-a-bad-return-code-during-its-internal-processing.aspx"&gt;read more&lt;/a&gt;)&lt;img src="http://blogs.msdn.com/aggbug.aspx?PostID=3722454" width="1" height="1"&gt;</description><category domain="http://blogs.msdn.com/tolong/archive/tags/Visual+Studio/default.aspx">Visual Studio</category></item><item><title>Download DinnerNow.NET Sample Application</title><link>http://blogs.msdn.com/tolong/archive/2007/06/13/download-dinnernow-net-sample-application.aspx</link><pubDate>Wed, 13 Jun 2007 18:12:00 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:3270476</guid><dc:creator>tolong</dc:creator><slash:comments>1</slash:comments><comments>http://blogs.msdn.com/tolong/comments/3270476.aspx</comments><wfw:commentRss>http://blogs.msdn.com/tolong/commentrss.aspx?PostID=3270476</wfw:commentRss><description>DinnerNow.NET is a cool sample application demonstrates how you can develop a connected application using several new Microsoft technologies including: .NET Framework 3.0 technologies – WF, WCF, WPF, and CardSpace Core technologies native to Windows Vista...(&lt;a href="http://blogs.msdn.com/tolong/archive/2007/06/13/download-dinnernow-net-sample-application.aspx"&gt;read more&lt;/a&gt;)&lt;img src="http://blogs.msdn.com/aggbug.aspx?PostID=3270476" width="1" height="1"&gt;</description><category domain="http://blogs.msdn.com/tolong/archive/tags/Mobile+Development/default.aspx">Mobile Development</category><category domain="http://blogs.msdn.com/tolong/archive/tags/General+.NET+/default.aspx">General .NET </category><category domain="http://blogs.msdn.com/tolong/archive/tags/ASP.NET+AJAX/default.aspx">ASP.NET AJAX</category><category domain="http://blogs.msdn.com/tolong/archive/tags/ASP.net/default.aspx">ASP.net</category><category domain="http://blogs.msdn.com/tolong/archive/tags/Visual+Studio/default.aspx">Visual Studio</category><category domain="http://blogs.msdn.com/tolong/archive/tags/WPF/default.aspx">WPF</category><category domain="http://blogs.msdn.com/tolong/archive/tags/Windows+Server+2008/default.aspx">Windows Server 2008</category></item><item><title>can I install .net 3.0 extensions on Visual Studio 2003?</title><link>http://blogs.msdn.com/tolong/archive/2007/05/02/can-i-install-net-3-0-extensions-on-visual-studio-2003.aspx</link><pubDate>Wed, 02 May 2007 19:25:00 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:2376601</guid><dc:creator>tolong</dc:creator><slash:comments>0</slash:comments><comments>http://blogs.msdn.com/tolong/comments/2376601.aspx</comments><wfw:commentRss>http://blogs.msdn.com/tolong/commentrss.aspx?PostID=2376601</wfw:commentRss><description>The extensions for .net framework 3.0 (templates to create .net 3.0 applications, like WPF, WCF, WF) only work with Visual Studio 2005. You may look at this site http://www.microsoft.com/downloads/details.aspx?FamilyId=F54F5537-CC86-4BF5-AE44-F5A1E805680D&amp;amp;displaylang=en...(&lt;a href="http://blogs.msdn.com/tolong/archive/2007/05/02/can-i-install-net-3-0-extensions-on-visual-studio-2003.aspx"&gt;read more&lt;/a&gt;)&lt;img src="http://blogs.msdn.com/aggbug.aspx?PostID=2376601" width="1" height="1"&gt;</description><category domain="http://blogs.msdn.com/tolong/archive/tags/General+.NET+/default.aspx">General .NET </category><category domain="http://blogs.msdn.com/tolong/archive/tags/Visual+Studio/default.aspx">Visual Studio</category><category domain="http://blogs.msdn.com/tolong/archive/tags/WPF/default.aspx">WPF</category></item><item><title>Does Macro work with TFS?</title><link>http://blogs.msdn.com/tolong/archive/2007/03/21/does-macro-work-with-tfs.aspx</link><pubDate>Wed, 21 Mar 2007 18:07:00 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:1926131</guid><dc:creator>tolong</dc:creator><slash:comments>2</slash:comments><comments>http://blogs.msdn.com/tolong/comments/1926131.aspx</comments><wfw:commentRss>http://blogs.msdn.com/tolong/commentrss.aspx?PostID=1926131</wfw:commentRss><description>If you are using Microsoft excel,project for some times, you might find using macros really ease your daily job. So, when come to integration excel and project with TFS, does macro still work with TFS? In fact, you can still create your own macro to call...(&lt;a href="http://blogs.msdn.com/tolong/archive/2007/03/21/does-macro-work-with-tfs.aspx"&gt;read more&lt;/a&gt;)&lt;img src="http://blogs.msdn.com/aggbug.aspx?PostID=1926131" width="1" height="1"&gt;</description><category domain="http://blogs.msdn.com/tolong/archive/tags/Visual+Studio+Team+System/default.aspx">Visual Studio Team System</category><category domain="http://blogs.msdn.com/tolong/archive/tags/General+.NET+/default.aspx">General .NET </category><category domain="http://blogs.msdn.com/tolong/archive/tags/Visual+Studio/default.aspx">Visual Studio</category></item><item><title>Use Visual Studio to build 64-bit application</title><link>http://blogs.msdn.com/tolong/archive/2007/03/21/use-visual-studio-to-build-64-bit-application.aspx</link><pubDate>Wed, 21 Mar 2007 04:59:00 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:1922867</guid><dc:creator>tolong</dc:creator><slash:comments>0</slash:comments><comments>http://blogs.msdn.com/tolong/comments/1922867.aspx</comments><wfw:commentRss>http://blogs.msdn.com/tolong/commentrss.aspx?PostID=1922867</wfw:commentRss><description>Some of the developers are asking, is that possible to use the Visual Studio 2005 to build 64-bit application. The answer is yes. But not every version of Visual Studio 2005. To build application target on Itanium platform, you can use Visual Studio Team...(&lt;a href="http://blogs.msdn.com/tolong/archive/2007/03/21/use-visual-studio-to-build-64-bit-application.aspx"&gt;read more&lt;/a&gt;)&lt;img src="http://blogs.msdn.com/aggbug.aspx?PostID=1922867" width="1" height="1"&gt;</description><category domain="http://blogs.msdn.com/tolong/archive/tags/General+.NET+/default.aspx">General .NET </category><category domain="http://blogs.msdn.com/tolong/archive/tags/Visual+Studio/default.aspx">Visual Studio</category></item><item><title>VB05 Express Installation Problem</title><link>http://blogs.msdn.com/tolong/archive/2007/02/23/vb05-express-installation-problem.aspx</link><pubDate>Fri, 23 Feb 2007 11:19:00 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:1745913</guid><dc:creator>tolong</dc:creator><slash:comments>0</slash:comments><comments>http://blogs.msdn.com/tolong/comments/1745913.aspx</comments><wfw:commentRss>http://blogs.msdn.com/tolong/commentrss.aspx?PostID=1745913</wfw:commentRss><description>When you installed VB 2005 express and you encountered this error message: "The Application Data folder for Visual Basic Express could not be created.", what should you do? Here are some solutions: 1. Before you install VB 2005 Express, make sure any...(&lt;a href="http://blogs.msdn.com/tolong/archive/2007/02/23/vb05-express-installation-problem.aspx"&gt;read more&lt;/a&gt;)&lt;img src="http://blogs.msdn.com/aggbug.aspx?PostID=1745913" width="1" height="1"&gt;</description><category domain="http://blogs.msdn.com/tolong/archive/tags/General+.NET+/default.aspx">General .NET </category><category domain="http://blogs.msdn.com/tolong/archive/tags/Visual+Studio/default.aspx">Visual Studio</category></item><item><title>Ten Must-Have Tools for Every Developer</title><link>http://blogs.msdn.com/tolong/archive/2007/02/13/ten-must-have-tools-for-every-developer.aspx</link><pubDate>Tue, 13 Feb 2007 04:33:00 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:1665549</guid><dc:creator>tolong</dc:creator><slash:comments>1</slash:comments><comments>http://blogs.msdn.com/tolong/comments/1665549.aspx</comments><wfw:commentRss>http://blogs.msdn.com/tolong/commentrss.aspx?PostID=1665549</wfw:commentRss><description>Just came across this article talks on the ten must-have tools for every developer. 1. Snippet Compiler: It allows you to write, compile, and run code http://www.silver.com/donet/SnippetCompiler/ 2. Regulator : This tool allows you build and test regular...(&lt;a href="http://blogs.msdn.com/tolong/archive/2007/02/13/ten-must-have-tools-for-every-developer.aspx"&gt;read more&lt;/a&gt;)&lt;img src="http://blogs.msdn.com/aggbug.aspx?PostID=1665549" width="1" height="1"&gt;</description><category domain="http://blogs.msdn.com/tolong/archive/tags/General+.NET+/default.aspx">General .NET </category><category domain="http://blogs.msdn.com/tolong/archive/tags/Visual+Studio/default.aspx">Visual Studio</category></item><item><title>Download the Visual Studio Code Name "Orcas"</title><link>http://blogs.msdn.com/tolong/archive/2007/01/29/download-the-visual-studio-code-name-orcas.aspx</link><pubDate>Mon, 29 Jan 2007 17:48:00 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:1551933</guid><dc:creator>tolong</dc:creator><slash:comments>0</slash:comments><comments>http://blogs.msdn.com/tolong/comments/1551933.aspx</comments><wfw:commentRss>http://blogs.msdn.com/tolong/commentrss.aspx?PostID=1551933</wfw:commentRss><description>Microsoft Visual Studio Code Name " Orcas " is the next generation development tool for Windows Vista, the 2007 Office System, and the Web. You can now download the January CTP of Visual Studio code name " Orcas ". Click h ere to download. This CTP is...(&lt;a href="http://blogs.msdn.com/tolong/archive/2007/01/29/download-the-visual-studio-code-name-orcas.aspx"&gt;read more&lt;/a&gt;)&lt;img src="http://blogs.msdn.com/aggbug.aspx?PostID=1551933" width="1" height="1"&gt;</description><category domain="http://blogs.msdn.com/tolong/archive/tags/General+.NET+/default.aspx">General .NET </category><category domain="http://blogs.msdn.com/tolong/archive/tags/Visual+Studio/default.aspx">Visual Studio</category></item></channel></rss>