<?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>YuL 告别 DONEWS！ 朋友们，再见！ 的评论</title>
	<atom:link href="http://blog.donews.com/yul/comments/feed" rel="self" type="application/rss+xml" />
	<link>http://blog.donews.com/yul</link>
	<description>搬家至http://yul.185.cc</description>
	<lastBuildDate>Fri, 25 Mar 2005 09:26:00 +0800</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>阿达庥宏 对《网页打印原来如此轻松》的评论</title>
		<link>http://blog.donews.com/yul/archive/2005/01/19/247305.aspx/comment-page-1#comment-10</link>
		<dc:creator>阿达庥宏</dc:creator>
		<pubDate>Fri, 25 Mar 2005 09:26:00 +0000</pubDate>
		<guid isPermaLink="false">http://blog.donews.com/yul/archive/2005/01/19/247305.aspx#comment-10</guid>
		<description>你可以直接在文件_页面设置里去掉页眉与页脚就可以了.</description>
		<content:encoded><![CDATA[<p>你可以直接在文件_页面设置里去掉页眉与页脚就可以了.</p>
]]></content:encoded>
	</item>
	<item>
		<title>YuL 对《一头长了一身白羽毛的波斯狗！》的评论</title>
		<link>http://blog.donews.com/yul/archive/2005/02/27/290301.aspx/comment-page-1#comment-17</link>
		<dc:creator>YuL</dc:creator>
		<pubDate>Mon, 28 Feb 2005 07:26:00 +0000</pubDate>
		<guid isPermaLink="false">http://blog.donews.com/yul/archive/2005/02/27/290301.aspx#comment-17</guid>
		<description>Hi, scdch, thanx for ur feedback!&lt;br&gt;The method, in ur feedback, is very good! But when I use it in different code block, I get the different result. e.g: using button_click event to call the method, it can return OK result; using form_load event to call it, null/nothing can be returned. How to call the method correctly?</description>
		<content:encoded><![CDATA[<p>Hi, scdch, thanx for ur feedback!<br />
<br />The method, in ur feedback, is very good! But when I use it in different code block, I get the different result. e.g: using button_click event to call the method, it can return OK result; using form_load event to call it, null/nothing can be returned. How to call the method correctly?</p>
]]></content:encoded>
	</item>
	<item>
		<title>scdch 对《一头长了一身白羽毛的波斯狗！》的评论</title>
		<link>http://blog.donews.com/yul/archive/2005/02/27/290301.aspx/comment-page-1#comment-16</link>
		<dc:creator>scdch</dc:creator>
		<pubDate>Mon, 28 Feb 2005 04:28:00 +0000</pubDate>
		<guid isPermaLink="false">http://blog.donews.com/yul/archive/2005/02/27/290301.aspx#comment-16</guid>
		<description>When I set the current cursor to the wait cursor, why does it revert before I want it to?&lt;br&gt;&lt;br&gt;I set the wait cursor using Cursor.Current = Cursors.WaitCursor;. Why does does it disappear before I want it to?&lt;br&gt;&lt;br&gt;Setting the Current property changes the cursor and stops the processing of mouse events. Setting the cursor back to Cursors.Default restarts the mouse event processing and displays the proper cursor for each control. If a DoEvents is called before you reset the cursor back to the default, this will also start up the mouse event processing and you will lose the particular cursor you set. So, if your WaitCursor is disappearring, one explanation might be that DoEvents is getting called.&lt;br&gt;&lt;br&gt;Here is some code that sets a WaitCursor.&lt;br&gt;&lt;br&gt;Cursor oldCursor = Cursor.Current; &lt;br&gt;Cursor.Current = Cursors.WaitCursor; &lt;br&gt;try &lt;br&gt;{ &lt;br&gt;  // Do your processing that takes time, e.g., wait for 2 seconds&lt;br&gt;  DateTime dt = DateTime.Now.AddSeconds(2); &lt;br&gt;  while ( dt &gt; DateTime.Now ) {} &lt;br&gt;} &lt;br&gt;finally &lt;br&gt;{ &lt;br&gt;  Cursor.Current = oldCursor; &lt;br&gt;}&lt;br&gt;&lt;br&gt;Contributed from George Shepherd&#039;s Windows Forms FAQ</description>
		<content:encoded><![CDATA[<p>When I set the current cursor to the wait cursor, why does it revert before I want it to?</p>
<p>I set the wait cursor using Cursor.Current = Cursors.WaitCursor;. Why does does it disappear before I want it to?</p>
<p>Setting the Current property changes the cursor and stops the processing of mouse events. Setting the cursor back to Cursors.Default restarts the mouse event processing and displays the proper cursor for each control. If a DoEvents is called before you reset the cursor back to the default, this will also start up the mouse event processing and you will lose the particular cursor you set. So, if your WaitCursor is disappearring, one explanation might be that DoEvents is getting called.</p>
<p>Here is some code that sets a WaitCursor.</p>
<p>Cursor oldCursor = Cursor.Current;<br />
<br />Cursor.Current = Cursors.WaitCursor;<br />
<br />try<br />
<br />{<br />
<br />  // Do your processing that takes time, e.g., wait for 2 seconds<br />
<br />  DateTime dt = DateTime.Now.AddSeconds(2);<br />
<br />  while ( dt &gt; DateTime.Now ) {}<br />
<br />}<br />
<br />finally<br />
<br />{<br />
<br />  Cursor.Current = oldCursor;<br />
<br />}</p>
<p>Contributed from George Shepherd&#8217;s Windows Forms FAQ</p>
]]></content:encoded>
	</item>
	<item>
		<title>西河 对《网页打印原来如此轻松》的评论</title>
		<link>http://blog.donews.com/yul/archive/2005/01/19/247305.aspx/comment-page-1#comment-9</link>
		<dc:creator>西河</dc:creator>
		<pubDate>Wed, 16 Feb 2005 14:40:00 +0000</pubDate>
		<guid isPermaLink="false">http://blog.donews.com/yul/archive/2005/01/19/247305.aspx#comment-9</guid>
		<description>真的没有发现有什么独道之处...&lt;br&gt;我现在要解决的最主要的问题是..如果打印出来时..不打印页眉与页脚...</description>
		<content:encoded><![CDATA[<p>真的没有发现有什么独道之处&#8230;<br />
<br />我现在要解决的最主要的问题是..如果打印出来时..不打印页眉与页脚&#8230;</p>
]]></content:encoded>
	</item>
	<item>
		<title>泡沫 对《瑞雪照丰年》的评论</title>
		<link>http://blog.donews.com/yul/archive/2005/02/10/273164.aspx/comment-page-1#comment-8</link>
		<dc:creator>泡沫</dc:creator>
		<pubDate>Mon, 14 Feb 2005 08:16:00 +0000</pubDate>
		<guid isPermaLink="false">http://blog.donews.com/yul/archive/2005/02/10/273164.aspx#comment-8</guid>
		<description>晚点就晚点把，拜了就行。我也想吃开口笑的饺子！&lt;br&gt;我觉得我得blog里，上面的图片太窄了，为啥?别人的就比我的宽。</description>
		<content:encoded><![CDATA[<p>晚点就晚点把，拜了就行。我也想吃开口笑的饺子！<br />
<br />我觉得我得blog里，上面的图片太窄了，为啥?别人的就比我的宽。</p>
]]></content:encoded>
	</item>
	<item>
		<title>13121982 对《瑞雪照丰年》的评论</title>
		<link>http://blog.donews.com/yul/archive/2005/02/10/273164.aspx/comment-page-1#comment-15</link>
		<dc:creator>13121982</dc:creator>
		<pubDate>Fri, 11 Feb 2005 13:06:00 +0000</pubDate>
		<guid isPermaLink="false">http://blog.donews.com/yul/archive/2005/02/10/273164.aspx#comment-15</guid>
		<description>大大露脸是&lt;br&gt;给你拜个年</description>
		<content:encoded><![CDATA[<p>大大露脸是<br />
<br />给你拜个年</p>
]]></content:encoded>
	</item>
	<item>
		<title>YuL 对《真是一个美好的星期天》的评论</title>
		<link>http://blog.donews.com/yul/archive/2005/01/30/262327.aspx/comment-page-1#comment-7</link>
		<dc:creator>YuL</dc:creator>
		<pubDate>Wed, 02 Feb 2005 01:20:00 +0000</pubDate>
		<guid isPermaLink="false">http://blog.donews.com/yul/archive/2005/01/30/262327.aspx#comment-7</guid>
		<description>TO DICKY：我通过你的BLOG知道你在南京工作，不知道南京工作环境待遇怎么样？我这次来南京只是处理项目收尾工作，所以，没有和南京职场有真正的接触。如果你不介意的话，可以介绍一下啦。</description>
		<content:encoded><![CDATA[<p>TO DICKY：我通过你的BLOG知道你在南京工作，不知道南京工作环境待遇怎么样？我这次来南京只是处理项目收尾工作，所以，没有和南京职场有真正的接触。如果你不介意的话，可以介绍一下啦。</p>
]]></content:encoded>
	</item>
	<item>
		<title>Dicky 对《真是一个美好的星期天》的评论</title>
		<link>http://blog.donews.com/yul/archive/2005/01/30/262327.aspx/comment-page-1#comment-6</link>
		<dc:creator>Dicky</dc:creator>
		<pubDate>Wed, 02 Feb 2005 01:13:00 +0000</pubDate>
		<guid isPermaLink="false">http://blog.donews.com/yul/archive/2005/01/30/262327.aspx#comment-6</guid>
		<description>不要这么谦虚嘛？归根结底，操作数据库的编程最基本的都是“增、查、改、删”啦~ 偶也基本没怎么做过复杂的应用。公司的项目里需要用到很多存储过程，偶都不太会，还是请pm搞定的呢：（</description>
		<content:encoded><![CDATA[<p>不要这么谦虚嘛？归根结底，操作数据库的编程最基本的都是“增、查、改、删”啦~ 偶也基本没怎么做过复杂的应用。公司的项目里需要用到很多存储过程，偶都不太会，还是请pm搞定的呢：（</p>
]]></content:encoded>
	</item>
	<item>
		<title>YuL 对《真是一个美好的星期天》的评论</title>
		<link>http://blog.donews.com/yul/archive/2005/01/30/262327.aspx/comment-page-1#comment-5</link>
		<dc:creator>YuL</dc:creator>
		<pubDate>Sun, 30 Jan 2005 11:31:00 +0000</pubDate>
		<guid isPermaLink="false">http://blog.donews.com/yul/archive/2005/01/30/262327.aspx#comment-5</guid>
		<description>都不知道怎么回答你好了，嘿嘿……如果吹牛的话，可以说这是个管理信息系统。其实，充其量也就是个“增、查、改、删”操作数据库的小工具而已。</description>
		<content:encoded><![CDATA[<p>都不知道怎么回答你好了，嘿嘿……如果吹牛的话，可以说这是个管理信息系统。其实，充其量也就是个“增、查、改、删”操作数据库的小工具而已。</p>
]]></content:encoded>
	</item>
	<item>
		<title>Dicky 对《真是一个美好的星期天》的评论</title>
		<link>http://blog.donews.com/yul/archive/2005/01/30/262327.aspx/comment-page-1#comment-4</link>
		<dc:creator>Dicky</dc:creator>
		<pubDate>Sun, 30 Jan 2005 11:07:00 +0000</pubDate>
		<guid isPermaLink="false">http://blog.donews.com/yul/archive/2005/01/30/262327.aspx#comment-4</guid>
		<description>恭喜，终于完工咯。不知道yul开发的是什么系统啊？</description>
		<content:encoded><![CDATA[<p>恭喜，终于完工咯。不知道yul开发的是什么系统啊？</p>
]]></content:encoded>
	</item>
</channel>
</rss>

