<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	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/"
		>
<channel>
	<title>Comments on: Shell Context Menu</title>
	<atom:link href="http://www.andrewvos.com/?feed=rss2&#038;p=190" rel="self" type="application/rss+xml" />
	<link>http://www.andrewvos.com/2007/07/05/shell-context-menu/</link>
	<description>.NET, C#, jQuery etc.</description>
	<lastBuildDate>Wed, 10 Mar 2010 12:32:44 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>By: TheRoughGuy</title>
		<link>http://www.andrewvos.com/2007/07/05/shell-context-menu/comment-page-1/#comment-2467</link>
		<dc:creator>TheRoughGuy</dc:creator>
		<pubDate>Sun, 24 Jan 2010 09:31:02 +0000</pubDate>
		<guid isPermaLink="false">http://www.andrewvos.com/?p=190#comment-2467</guid>
		<description>Thanks A Lot for the code...</description>
		<content:encoded><![CDATA[<p>Thanks A Lot for the code&#8230;</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: SJoachimsthaler</title>
		<link>http://www.andrewvos.com/2007/07/05/shell-context-menu/comment-page-1/#comment-2442</link>
		<dc:creator>SJoachimsthaler</dc:creator>
		<pubDate>Wed, 08 Jul 2009 14:38:01 +0000</pubDate>
		<guid isPermaLink="false">http://www.andrewvos.com/?p=190#comment-2442</guid>
		<description>is it possible to display the contextmenu, which appears by clicking in the empty space in windows-explorer?</description>
		<content:encoded><![CDATA[<p>is it possible to display the contextmenu, which appears by clicking in the empty space in windows-explorer?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Andrew Vos</title>
		<link>http://www.andrewvos.com/2007/07/05/shell-context-menu/comment-page-1/#comment-849</link>
		<dc:creator>Andrew Vos</dc:creator>
		<pubDate>Wed, 23 Apr 2008 05:46:14 +0000</pubDate>
		<guid isPermaLink="false">http://www.andrewvos.com/?p=190#comment-849</guid>
		<description>&lt;i&gt;CMF_EXTENDEDVERBS
This flag is set when the calling application wants extended verbs. Normal verbs are displayed when the user right-clicks an object. To display extended verbs, the user must right-click while pressing the SHIFT key.&lt;/i&gt;

Got that from MSDN. Should have added a constant for that, sorry. Quite cryptic.</description>
		<content:encoded><![CDATA[<p><i>CMF_EXTENDEDVERBS<br />
This flag is set when the calling application wants extended verbs. Normal verbs are displayed when the user right-clicks an object. To display extended verbs, the user must right-click while pressing the SHIFT key.</i></p>
<p>Got that from MSDN. Should have added a constant for that, sorry. Quite cryptic.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Andrew Vos</title>
		<link>http://www.andrewvos.com/2007/07/05/shell-context-menu/comment-page-1/#comment-848</link>
		<dc:creator>Andrew Vos</dc:creator>
		<pubDate>Wed, 23 Apr 2008 05:37:13 +0000</pubDate>
		<guid isPermaLink="false">http://www.andrewvos.com/?p=190#comment-848</guid>
		<description>Yeah, you&#039;re gonna have to take the return code and code a replacement for the rename dialog.

Not very good cause you&#039;ll have to hard code Rename. Seems like a step backwards to me.</description>
		<content:encoded><![CDATA[<p>Yeah, you&#8217;re gonna have to take the return code and code a replacement for the rename dialog.</p>
<p>Not very good cause you&#8217;ll have to hard code Rename. Seems like a step backwards to me.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: JoeAndLester</title>
		<link>http://www.andrewvos.com/2007/07/05/shell-context-menu/comment-page-1/#comment-847</link>
		<dc:creator>JoeAndLester</dc:creator>
		<pubDate>Tue, 22 Apr 2008 19:43:35 +0000</pubDate>
		<guid isPermaLink="false">http://www.andrewvos.com/?p=190#comment-847</guid>
		<description>Thanks for the pointer. In the call to QueryContext menu the uFlags parameter must have the CMF_CANRENAME bit (&amp;H10 in VB) set for the Rename option to appear. Please not that code EXTERNAL to the code provided here must handle this by examining the return code.

On another note, there is something strange with the code that sets uFlags to 256 when a shift key is pressed. If I need to figure this out I&#039;ll post again.</description>
		<content:encoded><![CDATA[<p>Thanks for the pointer. In the call to QueryContext menu the uFlags parameter must have the CMF_CANRENAME bit (&amp;H10 in VB) set for the Rename option to appear. Please not that code EXTERNAL to the code provided here must handle this by examining the return code.</p>
<p>On another note, there is something strange with the code that sets uFlags to 256 when a shift key is pressed. If I need to figure this out I&#8217;ll post again.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Andrew Vos</title>
		<link>http://www.andrewvos.com/2007/07/05/shell-context-menu/comment-page-1/#comment-846</link>
		<dc:creator>Andrew Vos</dc:creator>
		<pubDate>Tue, 22 Apr 2008 18:32:18 +0000</pubDate>
		<guid isPermaLink="false">http://www.andrewvos.com/?p=190#comment-846</guid>
		<description>I think it&#039;s something to do with some flags in one of the calls.

Please remind me of the problem if you find it, and I&#039;ll update the code.

Otherwise, I&#039;ll take a look tomorrow maybe.</description>
		<content:encoded><![CDATA[<p>I think it&#8217;s something to do with some flags in one of the calls.</p>
<p>Please remind me of the problem if you find it, and I&#8217;ll update the code.</p>
<p>Otherwise, I&#8217;ll take a look tomorrow maybe.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: JoeAndLester</title>
		<link>http://www.andrewvos.com/2007/07/05/shell-context-menu/comment-page-1/#comment-845</link>
		<dc:creator>JoeAndLester</dc:creator>
		<pubDate>Tue, 22 Apr 2008 17:56:24 +0000</pubDate>
		<guid isPermaLink="false">http://www.andrewvos.com/?p=190#comment-845</guid>
		<description>Any idea why the &quot;Rename&quot; option isn&#039;t in the menu?</description>
		<content:encoded><![CDATA[<p>Any idea why the &#8220;Rename&#8221; option isn&#8217;t in the menu?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Andrew Vos</title>
		<link>http://www.andrewvos.com/2007/07/05/shell-context-menu/comment-page-1/#comment-840</link>
		<dc:creator>Andrew Vos</dc:creator>
		<pubDate>Mon, 10 Mar 2008 11:43:36 +0000</pubDate>
		<guid isPermaLink="false">http://www.andrewvos.com/?p=190#comment-840</guid>
		<description>Glad it worked for you.</description>
		<content:encoded><![CDATA[<p>Glad it worked for you.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Teo</title>
		<link>http://www.andrewvos.com/2007/07/05/shell-context-menu/comment-page-1/#comment-839</link>
		<dc:creator>Teo</dc:creator>
		<pubDate>Fri, 07 Mar 2008 20:26:58 +0000</pubDate>
		<guid isPermaLink="false">http://www.andrewvos.com/?p=190#comment-839</guid>
		<description>Thank you for the code. It works like a charm.

Teo</description>
		<content:encoded><![CDATA[<p>Thank you for the code. It works like a charm.</p>
<p>Teo</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Andrew Vos</title>
		<link>http://www.andrewvos.com/2007/07/05/shell-context-menu/comment-page-1/#comment-829</link>
		<dc:creator>Andrew Vos</dc:creator>
		<pubDate>Sun, 02 Dec 2007 08:42:28 +0000</pubDate>
		<guid isPermaLink="false">http://www.andrewvos.com/?p=190#comment-829</guid>
		<description>Glad you found some use of it!</description>
		<content:encoded><![CDATA[<p>Glad you found some use of it!</p>
]]></content:encoded>
	</item>
</channel>
</rss>
