<?xml version="1.0" encoding="UTF-8" ?>
<?xml-stylesheet type="text/xsl" media="screen" href="/styles/xslt/rss.xslt"?>
<rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:atom="http://www.w3.org/2005/Atom" 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:media="http://search.yahoo.com/mrss/" xmlns:itunes="http://www.itunes.com/dtds/podcast-1.0.dtd" xmlns:c9="http://channel9.msdn.com">
<channel>
	<title>Channel 9 Forums - Tech Off - .NET: Setting A Form&#39;s Cursor</title>
	<atom:link rel="self" type="application/rss+xml" href="http://channel9.msdn.com/Forums/rss"></atom:link>
	<image>
		<url>http://mschnlnine.vo.llnwd.net/d1/Dev/App_Themes/C9/images/feedimage.png</url>
		<title>Channel 9 Forums - Tech Off - .NET: Setting A Form&#39;s Cursor</title>
		<link>http://channel9.msdn.com/Forums</link>
	</image>
	<description>Channel 9 keeps you up to date with the latest news and behind the scenes info from Microsoft that developers love to keep up with. From LINQ to SilverLight – Watch videos and hear about all the cool technologies coming and the people behind them.</description>
	<link>http://channel9.msdn.com/Forums</link>
	<language>en</language>
	<pubDate>Sat, 25 May 2013 17:55:23 GMT</pubDate>
	<lastBuildDate>Sat, 25 May 2013 17:55:23 GMT</lastBuildDate>
	<generator>Rev9</generator>
	<c9:totalResults>4</c9:totalResults>
	<c9:pageCount>-4</c9:pageCount>
	<c9:pageSize>-1</c9:pageSize>
	<item>
		<title>Tech Off - .NET: Setting A Form&#39;s Cursor</title>
		<description><![CDATA[<p>I wish to set the cursor of a form to Wait and then launch a dialog, and then, when the dialog is done and sends a Finished event to the parent form, to change the cursor back to the Default.</p>
<p>Currently, I use Cursor = Cursors.WaitCursor but that doesn't seem to work because when I move the mouse over the parent form while the dialog is visible, the cursor shows up as the Default cursor instead of the Wait cursor. Does anyone have any suggestions
 or ideas for getting the Wait cursor to show up?</p>
<p>I'm using VB .NET but I can take a decent stab at understanding C# code if necessary.</p>]]></description>
		<link>http://channel9.msdn.com/Forums/TechOff/457554-NET-Setting-A-Forms-Cursor/457554#457554</link>
		<pubDate>Mon, 16 Feb 2009 06:42:09 GMT</pubDate>
		<guid isPermaLink="false">http://channel9.msdn.com/Forums/TechOff/457554-NET-Setting-A-Forms-Cursor/457554#457554</guid>
		<dc:creator>Zian Choy</dc:creator>
		<slash:comments>4</slash:comments>
		<wfw:commentRss>http://channel9.msdn.com/Niners/zian/Discussions/RSS</wfw:commentRss>
	</item>
	<item>
		<title>Tech Off - .NET: Setting A Form&#39;s Cursor</title>
		<description><![CDATA[<p>Each control (including Form) has a boolean property UseWaitCursor, which you can set to true to use the wait-cursor, or false to use the regular cursor. You could try that one.</p>]]></description>
		<link>http://channel9.msdn.com/Forums/TechOff/457554-NET-Setting-A-Forms-Cursor/fb671d1e9e554391b1ac9deb0003defd#fb671d1e9e554391b1ac9deb0003defd</link>
		<pubDate>Mon, 16 Feb 2009 07:21:44 GMT</pubDate>
		<guid isPermaLink="false">http://channel9.msdn.com/Forums/TechOff/457554-NET-Setting-A-Forms-Cursor/fb671d1e9e554391b1ac9deb0003defd#fb671d1e9e554391b1ac9deb0003defd</guid>
		<dc:creator>Tommy Carlier</dc:creator>
		<slash:comments>4</slash:comments>
		<wfw:commentRss>http://channel9.msdn.com/Niners/TommyCarlier/Discussions/RSS</wfw:commentRss>
	</item>
	<item>
		<title>Tech Off - .NET: Setting A Form&#39;s Cursor</title>
		<description><![CDATA[<p>I think you are looking for:<br /><br />Cursor.Current = Cursors.WaitCursor;<br /><br />And to reset it: <br /><br />Cursor.Current = Cursors.Default;<br /><br />-Jorgie</p>]]></description>
		<link>http://channel9.msdn.com/Forums/TechOff/457554-NET-Setting-A-Forms-Cursor/1dee22218535457c8be79deb0003df3e#1dee22218535457c8be79deb0003df3e</link>
		<pubDate>Mon, 16 Feb 2009 15:23:55 GMT</pubDate>
		<guid isPermaLink="false">http://channel9.msdn.com/Forums/TechOff/457554-NET-Setting-A-Forms-Cursor/1dee22218535457c8be79deb0003df3e#1dee22218535457c8be79deb0003df3e</guid>
		<dc:creator>Jorgie</dc:creator>
		<slash:comments>4</slash:comments>
		<wfw:commentRss>http://channel9.msdn.com/Niners/Jorgie/Discussions/RSS</wfw:commentRss>
	</item>
	<item>
		<title>Tech Off - .NET: Setting A Form&#39;s Cursor</title>
		<description><![CDATA[<p><blockquote><div class="quoteUser">Jorgie said:</div><div class="quoteText">I think you are looking for:<br /><br />Cursor.Current = Cursors.WaitCursor;<br /><br />And to reset it: <br /><br />Cursor.Current = Cursors.Default;<br /><br />-Jorgie</div></blockquote>Thanks for all the suggestions. I tried both approaches and found that they don't work. I suspect that there is some sort of bizarre interaction going on because I am using System.ComponentModel.BackgroundWorker in the progress dialog box to
 fire the Finished event (absolutely critical when the user hits the cancel button and the form closing&nbsp;&lt;&gt; finished) to the main form.<br /><br />I have a sneaking suspicion that there's a good reason for the cursor problem but alas, Raymond Chen does not come in a Visual Basic .NET edition.</p>]]></description>
		<link>http://channel9.msdn.com/Forums/TechOff/457554-NET-Setting-A-Forms-Cursor/a8904cfc00cf424593e39deb0003df66#a8904cfc00cf424593e39deb0003df66</link>
		<pubDate>Sun, 22 Feb 2009 22:38:51 GMT</pubDate>
		<guid isPermaLink="false">http://channel9.msdn.com/Forums/TechOff/457554-NET-Setting-A-Forms-Cursor/a8904cfc00cf424593e39deb0003df66#a8904cfc00cf424593e39deb0003df66</guid>
		<dc:creator>Zian Choy</dc:creator>
		<slash:comments>4</slash:comments>
		<wfw:commentRss>http://channel9.msdn.com/Niners/zian/Discussions/RSS</wfw:commentRss>
	</item>
</channel>
</rss>