<?xml version="1.0" encoding="UTF-8"?><!-- generator="wordpress/1.5.2" -->
<rss version="2.0" 
	xmlns:content="http://purl.org/rss/1.0/modules/content/">
<channel>
	<title>Helixoft Blog Comments</title>
	<link>http://www.helixoft.com/blog</link>
	<description>Peter Macej - lead developer of VSdocman - talks about Visual Studio tips and automation</description>
	<pubDate>Sun, 05 Jul 2009 01:19:43 +0000</pubDate>
	<generator>http://wordpress.org/?v=1.5.2</generator>

	<item>
 		<title>Comment on How To Create and Run Macro in Visual Studio .NET by: Harish</title>
		<link>http://www.helixoft.com/blog/archives/6?n=how-to-create-and-run-macro-in-visual-studio-net#comment-141</link>
		<pubDate>Fri, 03 Jul 2009 03:50:52 +0000</pubDate>
		<guid>http://www.helixoft.com/blog/archives/6?n=how-to-create-and-run-macro-in-visual-studio-net#comment-141</guid>
					<description>I want to check whether a word document is having macros in it using c#.net. Can you help me in this regard</description>
		<content:encoded><![CDATA[	<p>I want to check whether a word document is having macros in it using c#.net. Can you help me in this regard
</p>
]]></content:encoded>
				</item>
	<item>
 		<title>Comment on Multiline Search and Replace in Visual Studio by: Peter Macej</title>
		<link>http://www.helixoft.com/blog/archives/15?n=multiline-search-and-replace-in-visual-studio#comment-139</link>
		<pubDate>Tue, 23 Jun 2009 08:52:42 +0000</pubDate>
		<guid>http://www.helixoft.com/blog/archives/15?n=multiline-search-and-replace-in-visual-studio#comment-139</guid>
					<description>Andrew, thank you for reporting this problem. I have fixed it and updated the article. See UPDATE note at the end of article.</description>
		<content:encoded><![CDATA[	<p>Andrew, thank you for reporting this problem. I have fixed it and updated the article. See UPDATE note at the end of article.
</p>
]]></content:encoded>
				</item>
	<item>
 		<title>Comment on Multiline Search and Replace in Visual Studio by: AndrewW</title>
		<link>http://www.helixoft.com/blog/archives/15?n=multiline-search-and-replace-in-visual-studio#comment-138</link>
		<pubDate>Sat, 13 Jun 2009 09:23:36 +0000</pubDate>
		<guid>http://www.helixoft.com/blog/archives/15?n=multiline-search-and-replace-in-visual-studio#comment-138</guid>
					<description>Fantastic, saved me loads of time. Thanks.
Just one thing though ... I was deleting lines with your macro, so left the 'Replace with' textbox blank. The 'Find and Replace' dialog though put a &quot; character in the 'Replace with' textbox. 
Cheers.</description>
		<content:encoded><![CDATA[	<p>Fantastic, saved me loads of time. Thanks.<br />
Just one thing though &#8230; I was deleting lines with your macro, so left the &#8216;Replace with&#8217; textbox blank. The &#8216;Find and Replace&#8217; dialog though put a &#8221; character in the &#8216;Replace with&#8217; textbox.<br />
Cheers.
</p>
]]></content:encoded>
				</item>
	<item>
 		<title>Comment on How To Disable &#8220;A first chance exception of type&#8230;&#8221; Messages in VS 2005 by: mike</title>
		<link>http://www.helixoft.com/blog/archives/24?n=how-to-disable-a-first-chance-exception-of-type-messages-in-vs-2005#comment-137</link>
		<pubDate>Wed, 03 Jun 2009 13:23:14 +0000</pubDate>
		<guid>http://www.helixoft.com/blog/archives/24?n=how-to-disable-a-first-chance-exception-of-type-messages-in-vs-2005#comment-137</guid>
					<description>I don't agree with turning off first chance exceptions. Sure many times you know what they are and can be over looked but you should investigate when this happens.  If not for breaking, but even for efficiency.

An example would be inserting the same object into a list.  It will throw a first chance and handle it but you might have a bug/inefficiency that is requesting the same object to be inserted twice, or maybe you really need it to take in two copies of the object.

Turning these off will make you totally unaware of a potential conflict, and it's only in the debugger so what do you care if they pop up.</description>
		<content:encoded><![CDATA[	<p>I don&#8217;t agree with turning off first chance exceptions. Sure many times you know what they are and can be over looked but you should investigate when this happens.  If not for breaking, but even for efficiency.</p>
	<p>An example would be inserting the same object into a list.  It will throw a first chance and handle it but you might have a bug/inefficiency that is requesting the same object to be inserted twice, or maybe you really need it to take in two copies of the object.</p>
	<p>Turning these off will make you totally unaware of a potential conflict, and it&#8217;s only in the debugger so what do you care if they pop up.
</p>
]]></content:encoded>
				</item>
	<item>
 		<title>Comment on Showing Configuration Drop-down List on Toolbar in VS 2005 by: Usman ur Rehman Ahmed</title>
		<link>http://www.helixoft.com/blog/archives/18?n=showing-configuration-drop-down-list-on-toolbar-in-vs-2005#comment-136</link>
		<pubDate>Mon, 01 Jun 2009 16:29:35 +0000</pubDate>
		<guid>http://www.helixoft.com/blog/archives/18?n=showing-configuration-drop-down-list-on-toolbar-in-vs-2005#comment-136</guid>
					<description>An interesting observation for VS 2008. Right click on the project (class library project), select Properties and move to Debug menu. If you set the Configuration drop down to &quot;Debug&quot; from &quot;Release&quot; (this option will be available only if you have checked &quot;show advanced build configurations from tools&amp;#62;options), save it, close the property page, and reopen it, the configuration somehow gets back to &quot;reslease&quot; option and the compiled output is sent to &quot;Release&quot; folder. I messed it with for about dozen times.

However, dragging this option to toolbar (as this thread discusses) preserves the setting for debug.</description>
		<content:encoded><![CDATA[	<p>An interesting observation for VS 2008. Right click on the project (class library project), select Properties and move to Debug menu. If you set the Configuration drop down to &#8220;Debug&#8221; from &#8220;Release&#8221; (this option will be available only if you have checked &#8220;show advanced build configurations from tools&gt;options), save it, close the property page, and reopen it, the configuration somehow gets back to &#8220;reslease&#8221; option and the compiled output is sent to &#8220;Release&#8221; folder. I messed it with for about dozen times.</p>
	<p>However, dragging this option to toolbar (as this thread discusses) preserves the setting for debug.
</p>
]]></content:encoded>
				</item>
	<item>
 		<title>Comment on How To Create and Run Macro in Visual Studio .NET by: jamila</title>
		<link>http://www.helixoft.com/blog/archives/6?n=how-to-create-and-run-macro-in-visual-studio-net#comment-135</link>
		<pubDate>Thu, 14 May 2009 09:09:28 +0000</pubDate>
		<guid>http://www.helixoft.com/blog/archives/6?n=how-to-create-and-run-macro-in-visual-studio-net#comment-135</guid>
					<description>LE COUDE DE CREATION D'UN MACRO ET LES SIGNET DANS WORD ET VB NET</description>
		<content:encoded><![CDATA[	<p>LE COUDE DE CREATION D&#8217;UN MACRO ET LES SIGNET DANS WORD ET VB NET
</p>
]]></content:encoded>
				</item>
	<item>
 		<title>Comment on Showing Configuration Drop-down List on Toolbar in VS 2005 by: SIVA</title>
		<link>http://www.helixoft.com/blog/archives/18?n=showing-configuration-drop-down-list-on-toolbar-in-vs-2005#comment-134</link>
		<pubDate>Tue, 12 May 2009 06:52:05 +0000</pubDate>
		<guid>http://www.helixoft.com/blog/archives/18?n=showing-configuration-drop-down-list-on-toolbar-in-vs-2005#comment-134</guid>
					<description>I AM VERY HAPPY PLEASE SEND THE TIPS LIKE THI9S TO MY MAIL</description>
		<content:encoded><![CDATA[	<p>I AM VERY HAPPY PLEASE SEND THE TIPS LIKE THI9S TO MY MAIL
</p>
]]></content:encoded>
				</item>
	<item>
 		<title>Comment on Multiline Search and Replace in Visual Studio by: Tad</title>
		<link>http://www.helixoft.com/blog/archives/15?n=multiline-search-and-replace-in-visual-studio#comment-133</link>
		<pubDate>Mon, 11 May 2009 01:27:21 +0000</pubDate>
		<guid>http://www.helixoft.com/blog/archives/15?n=multiline-search-and-replace-in-visual-studio#comment-133</guid>
					<description>Awesome... thanks.</description>
		<content:encoded><![CDATA[	<p>Awesome&#8230; thanks.
</p>
]]></content:encoded>
				</item>
	<item>
 		<title>Comment on Multiline Search and Replace in Visual Studio by: SM</title>
		<link>http://www.helixoft.com/blog/archives/15?n=multiline-search-and-replace-in-visual-studio#comment-132</link>
		<pubDate>Tue, 28 Apr 2009 23:24:32 +0000</pubDate>
		<guid>http://www.helixoft.com/blog/archives/15?n=multiline-search-and-replace-in-visual-studio#comment-132</guid>
					<description>Thanks. This was very useful.</description>
		<content:encoded><![CDATA[	<p>Thanks. This was very useful.
</p>
]]></content:encoded>
				</item>
	<item>
 		<title>Comment on Multiline Search and Replace in Visual Studio by: Magsy</title>
		<link>http://www.helixoft.com/blog/archives/15?n=multiline-search-and-replace-in-visual-studio#comment-130</link>
		<pubDate>Wed, 25 Mar 2009 18:38:31 +0000</pubDate>
		<guid>http://www.helixoft.com/blog/archives/15?n=multiline-search-and-replace-in-visual-studio#comment-130</guid>
					<description>You is awesome!</description>
		<content:encoded><![CDATA[	<p>You is awesome!
</p>
]]></content:encoded>
				</item>
</channel>
</rss>
