<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	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/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	xmlns:itunes="http://www.itunes.com/dtds/podcast-1.0.dtd"
	xmlns:media="http://search.yahoo.com/mrss/"
>

<channel>
	<title>永远的风&#187; hust</title>
	<atom:link href="http://www.yinux.com/tag/hust/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.yinux.com</link>
	<description>局部地方</description>
	<lastBuildDate>Mon, 23 Aug 2010 03:54:50 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0</generator>
<atom:link rel="hub" href="http://pubsubhubbub.appspot.com"/><atom:link rel="hub" href="http://goodbee.superfeedr.com/"/>	<!-- podcast_generator="podPress/8.8" - maintenance_release="8.8.4" -->
		<copyright>Copyright &#xA9; 永远的风 2010 </copyright>
		<managingEditor>yinyuanchao@gmail.com (永远的风)</managingEditor>
		<webMaster>yinyuanchao@gmail.com (永远的风)</webMaster>
		<category>posts</category>
		<itunes:keywords></itunes:keywords>
		<itunes:subtitle></itunes:subtitle>
		<itunes:summary>局部地方</itunes:summary>
		<itunes:author>永远的风</itunes:author>
		<itunes:category text="Society &amp; Culture"/>
		<itunes:owner>
			<itunes:name>永远的风</itunes:name>
			<itunes:email>yinyuanchao@gmail.com</itunes:email>
		</itunes:owner>
		<itunes:block>No</itunes:block>
		<itunes:explicit>no</itunes:explicit>
		<itunes:image href="http://www.yinux.com/wp-content/plugins/podpress/images/powered_by_podpress_large.jpg" />
		<image>
			<url>http://www.yinux.com/wp-content/plugins/podpress/images/powered_by_podpress.jpg</url>
			<title>永远的风</title>
			<link>http://www.yinux.com</link>
			<width>144</width>
			<height>144</height>
		</image>
		<item>
		<title>VC模式对话框控件属性的修改</title>
		<link>http://www.yinux.com/2006/05/vc_model_dialog_control_attribute_changes/</link>
		<comments>http://www.yinux.com/2006/05/vc_model_dialog_control_attribute_changes/#comments</comments>
		<pubDate>Sat, 20 May 2006 22:29:56 +0000</pubDate>
		<dc:creator>goodbee</dc:creator>
				<category><![CDATA[华中科大]]></category>
		<category><![CDATA[hust]]></category>

		<guid isPermaLink="false">http://www.yinux.com/?p=55</guid>
		<description><![CDATA[要修改VC模式对话框控件属性，必然，最重要的是弄清楚对话框上的控件在何时创建，要在保证创建之后才修改，在网上找到一些资料，提出了修改对话框类的构造函数的方法，但是经测试，不能完成。后来把<br/>&#160;m_ListSet.AddString(&#34;属性&#34;);<br/>放到对话框类的 OnInitDialog()函数中，响应WM_INITDIALOG消息，顺利执行！<br/>具体原因等毕业设计做完之后去研究。<br/>&#160;<br/>当DoModal被调用后，实际在幕后引起一系列如下的动作：CDia... [...]]]></description>
			<content:encoded><![CDATA[<p><strong>要修改VC模式对话框控件属性，必然，最重要的是弄清楚对话框上的控件在何时创建，要在保证创建之后才修改，在网上找到一些资料，提出了修改对话框类的构造函数的方法，但是经测试，不能完成。后来把</strong></p>
<p>&nbsp;m_ListSet.AddString(&quot;属性&quot;);</p>
<p>放到对话框类的 OnInitDialog()函数中，响应WM_INITDIALOG消息，顺利执行！</p>
<p>具体原因等毕业设计做完之后去研究。</p>
<p>&nbsp;</p>
<p>当DoModal被调用后，实际在幕后引起一系列如下的动作：<br />CDialog::DoModal-&gt;CEx06Dialog::OnInitDialog-&gt;其它的初始化-&gt;CDialog::OnInitDialog-&gt;CWnd::UpdateData(FALSE)-&gt;CEx06Dialog::DoDataExchange<br />用户输入数据&#8230;<br />用户单击OK按钮<br />CEx06Dialog::OnOk-&gt;&#8230;其它的确认处理&#8230;-&gt;CDialog::OnOk-&gt;CWnd::UpDateData(TURE)-&gt;CEx06Dialog::DoDataExchange-&gt;CDialog::EndDialog(IDOK)<br />说明：<br />1）virtual BOOL OnInitDialog( );<br />//CDialog::OnInitDialog This member function is called in response to the WM_INITDIALOG message. This message is sent to the dialog box during the Create, CreateIndirect, or DoModal calls, which occur immediately before the dialog box is displayed. <br />//Override this member function if you need to perform special processing when the dialog box is initialized. </p>
<p>2）BOOL UpdateData( BOOL bSaveAndValidate = TRUE );<br />//CWnd::UpdateData ：Call this member function to initialize data in a dialog box, or to retrieve and validate dialog data.<br />//bSaveAndValidate：Flag that indicates whether dialog box is being initialized (FALSE) or data is being retrieved (TRUE).<br />//By default UpdateData(TRUE) is called in the default CDialog::OnOK handler and UpdateData(FALSE) is called in the default CDialog::OnInitDialog.</p>
<p>3）virtual void DoDataExchange( CDataExchange* pDX );<br />//CWnd::DoDataExchange Called by the framework to exchange and validate dialog data.<br />//Never call this function （DoDataExchange） directly. It is called by the UpdateData member function. <br />//Call UpdateData to initialize a dialog box&rsquo;s controls or retrieve data from a dialog box. </p>
<p>4）void EndDialog( int nResult );<br />//CDialog::EndDialog makes the dialog box invisible but does not destroy it.<br />//Call this member function to terminate a modal dialog box. This member function returns nResu </p>
]]></content:encoded>
			<wfw:commentRss>http://www.yinux.com/2006/05/vc_model_dialog_control_attribute_changes/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>CListview对NM_ITEMCHANGED消息的响应</title>
		<link>http://www.yinux.com/2006/05/clistview_response_to_the_news_nm_itemchanged/</link>
		<comments>http://www.yinux.com/2006/05/clistview_response_to_the_news_nm_itemchanged/#comments</comments>
		<pubDate>Wed, 17 May 2006 10:59:29 +0000</pubDate>
		<dc:creator>goodbee</dc:creator>
				<category><![CDATA[计算人生]]></category>
		<category><![CDATA[hust]]></category>

		<guid isPermaLink="false">http://www.yinux.com/?p=53</guid>
		<description><![CDATA[在毕业设计中，发现，listview中每改变一次选择，OnItemchanged函数执行了，三次，后来查证之后发现，state不光是选择的变化，还包括了焦点，还有其它的的变化第1次是iOldItem从LVIS_SELECTED到0(取消选择)第2次是iOldItem从LVIS_FOCUSED到0(取消焦点)第3次是iNewItem从0到LVIS_SELECTED&#160;&#124;&#160;LVIS_FOCUSED(获得选择，同时获得焦点)<br/>只在获得选择的时候执行，就需要这样if(&#160;(p... [...]]]></description>
			<content:encoded><![CDATA[<p>&nbsp;在毕业设计中，发现，listview中每改变一次选择，OnItemchanged函数执行了，三次，后来查证之后发现，state不光是选择的变化，还包括了焦点，还有其它的的变化<br />第1次是iOldItem从LVIS_SELECTED到0(取消选择)<br />第2次是iOldItem从LVIS_FOCUSED到0(取消焦点)<br />第3次是iNewItem从0到LVIS_SELECTED&nbsp;|&nbsp;LVIS_FOCUSED(获得选择，同时获得焦点)</p>
<p>只在获得选择的时候执行，就需要这样<br />if(&nbsp;(pNMListView-&gt;uNewState&nbsp;&amp;&nbsp;LVIS_SELECTED)&nbsp;&amp;&amp;&nbsp;<br />!(pNMListview-&gt;uOldState&nbsp;&amp;&nbsp;LVIS_SELECTED)&nbsp;)<br />{<br />&nbsp;&nbsp;&nbsp;&nbsp;int&nbsp;nNewItem&nbsp;=&nbsp;pNMListView-&gt;iItem;<br />&nbsp;&nbsp;&nbsp;&nbsp;&#8230;&#8230;<br />}</p>
]]></content:encoded>
			<wfw:commentRss>http://www.yinux.com/2006/05/clistview_response_to_the_news_nm_itemchanged/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>2005年12月27日各主要城市人均工资一览表</title>
		<link>http://www.yinux.com/2006/03/december_27_2005_the_per_capita_wages_in_major_cities_list/</link>
		<comments>http://www.yinux.com/2006/03/december_27_2005_the_per_capita_wages_in_major_cities_list/#comments</comments>
		<pubDate>Sat, 25 Mar 2006 00:48:57 +0000</pubDate>
		<dc:creator>goodbee</dc:creator>
				<category><![CDATA[华中科大]]></category>
		<category><![CDATA[hust]]></category>

		<guid isPermaLink="false">http://www.yinux.com/?p=42</guid>
		<description><![CDATA[<br/>    <br/>        <br/>            深圳市：31928元<br/>            广州市：30807元<br/>            北京市：28348元<br/>            杭州市：28186元<br/>        <br/>        <br/>            南京市：26063元<br/>            宁波市：25692元<br/>            东莞市：25326元<br/>            上海市：24396元<br/>        <br/>        <br/>... [...]]]></description>
			<content:encoded><![CDATA[<table cellspacing="1" cellpadding="1" width="445" border="1">
<tbody>
<tr>
<td width="113">深圳市：31928元</td>
<td width="114">广州市：30807元</td>
<td width="114">北京市：28348元</td>
<td width="104">杭州市：28186元</td>
</tr>
<tr>
<td>南京市：26063元</td>
<td>宁波市：25692元</td>
<td>东莞市：25326元</td>
<td>上海市：24396元</td>
</tr>
<tr>
<td>苏州市：22510元</td>
<td>中山市：22350元</td>
<td>无锡市：22126元</td>
<td>湖州市：21477元</td>
</tr>
<tr>
<td>厦门市：20539元</td>
<td>珠海市：20087元</td>
<td>常州市：19985元</td>
<td>天津市：17810元</td>
</tr>
<tr>
<td>长沙市：17623元</td>
<td>成都市：17556元</td>
<td>镇江市：17382元</td>
<td>沈阳市：17332元</td>
</tr>
<tr>
<td>福州市：16586元</td>
<td>合肥市：16369元</td>
<td>西宁市：16175元</td>
<td>武汉市：15971元</td>
</tr>
<tr>
<td>南通市：15902元</td>
<td>徐州市：15809元</td>
<td>扬州市：15735元</td>
<td>昆明市：15520元</td>
</tr>
<tr>
<td>南宁市：15447元</td>
<td>西安市：15296元</td>
<td>兰州市：14854元</td>
<td>银川市：14709元</td>
</tr>
<tr>
<td>泉州市：14467元</td>
<td>重庆市：14357元</td>
<td>贵阳市：14099元</td>
<td>哈尔滨: 13928元</td>
</tr>
<tr>
<td>石家庄: 13601元</td>
<td>威海市：13070元</td>
<td>绵阳市：12849元</td>
<td>太原市：12294元 </td>
</tr>
</tbody>
</table>
]]></content:encoded>
			<wfw:commentRss>http://www.yinux.com/2006/03/december_27_2005_the_per_capita_wages_in_major_cities_list/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>央视神雕侠侣下部</title>
		<link>http://www.yinux.com/2006/03/cctv_shendiaoxialv_lower/</link>
		<comments>http://www.yinux.com/2006/03/cctv_shendiaoxialv_lower/#comments</comments>
		<pubDate>Tue, 21 Mar 2006 02:39:02 +0000</pubDate>
		<dc:creator>goodbee</dc:creator>
				<category><![CDATA[计算人生]]></category>
		<category><![CDATA[hust]]></category>

		<guid isPermaLink="false">http://www.yinux.com/?p=41</guid>
		<description><![CDATA[不知道什么时候才可以出，虽然拍得不怎么样，上部是拖着看完的，但是总要看个结局有个映象哈！... [...]]]></description>
			<content:encoded><![CDATA[<p>不知道什么时候才可以出，虽然拍得不怎么样，上部是拖着看完的，但是总要看个结局有个映象哈！</p>
]]></content:encoded>
			<wfw:commentRss>http://www.yinux.com/2006/03/cctv_shendiaoxialv_lower/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>心情有点儿郁闷！</title>
		<link>http://www.yinux.com/2006/03/feeling_a_bit_depressed_/</link>
		<comments>http://www.yinux.com/2006/03/feeling_a_bit_depressed_/#comments</comments>
		<pubDate>Thu, 16 Mar 2006 19:31:51 +0000</pubDate>
		<dc:creator>goodbee</dc:creator>
				<category><![CDATA[计算人生]]></category>
		<category><![CDATA[hust]]></category>

		<guid isPermaLink="false">http://www.yinux.com/?p=39</guid>
		<description><![CDATA[<br/><br/> [...]]]></description>
			<content:encoded><![CDATA[<p>我都不知道这算不算吵架，但是感觉好严重啊！情绪特难控制那种&#8230;..不管怎么样，我还是期待美好的未来！</p>
]]></content:encoded>
			<wfw:commentRss>http://www.yinux.com/2006/03/feeling_a_bit_depressed_/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>华中科大计算机学院研究生分数线360</title>
		<link>http://www.yinux.com/2006/03/hua_zhong_keda_computer_graduate_school_scores_360/</link>
		<comments>http://www.yinux.com/2006/03/hua_zhong_keda_computer_graduate_school_scores_360/#comments</comments>
		<pubDate>Tue, 14 Mar 2006 00:31:20 +0000</pubDate>
		<dc:creator>goodbee</dc:creator>
				<category><![CDATA[华中科大]]></category>
		<category><![CDATA[hust]]></category>

		<guid isPermaLink="false">http://www.yinux.com/?p=35</guid>
		<description><![CDATA[班上一哥们死里逃生啊！整整360... [...]]]></description>
			<content:encoded><![CDATA[<p>班上一哥们死里逃生啊！整整360</p>
<p>&nbsp;</p>
<p>&nbsp;&nbsp; 报考华中科技大学的考生，2006年计算机学院的硕士学位研究生复试工作即将展开，现将复试有关的工作安排通知如下： </p>
<p>&nbsp; &nbsp; 一、硕士生入学考试考生参加复试分数线基本要求 <br />&nbsp; &nbsp; 1、统考生：总分基本要求360分，政治55分，英语55分，数学一90分，综合考试90分。</p>
]]></content:encoded>
			<wfw:commentRss>http://www.yinux.com/2006/03/hua_zhong_keda_computer_graduate_school_scores_360/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Context.RewritePath+Context.Server.Transfer避免使用Response.Redirect</title>
		<link>http://www.yinux.com/2006/03/context_rewritepath__context_server_transfer_avoid_the_use_of_res_/</link>
		<comments>http://www.yinux.com/2006/03/context_rewritepath__context_server_transfer_avoid_the_use_of_res_/#comments</comments>
		<pubDate>Thu, 09 Mar 2006 02:03:17 +0000</pubDate>
		<dc:creator>goodbee</dc:creator>
				<category><![CDATA[华中科大]]></category>
		<category><![CDATA[hust]]></category>

		<guid isPermaLink="false">http://www.yinux.com/?p=28</guid>
		<description><![CDATA[前文说到Context.Server.Transfer的缺点就是不能指定querystring，但是用<br/>Context.RewritePath(&#34;AA.Aspx&#34;,&#34;&#34;,&#34;OKOK=3333&#34;);Context.Server.Transfer(&#34;Test2.Aspx&#34;);<br/>这样，就能执行Test2.Aspx，并且QueryString是OKOK=3333。<br/>这个用途特别大。我目前用这个方法来避免使用 Respo... [...]]]></description>
			<content:encoded><![CDATA[<p>前文说到Context.Server.Transfer的缺点就是不能指定querystring，但是用</p>
<p>Context.RewritePath(&quot;AA.Aspx&quot;,&quot;&quot;,&quot;OKOK=3333&quot;);<br />Context.Server.Transfer(&quot;Test2.Aspx&quot;);</p>
<p>这样，就能执行Test2.Aspx，并且QueryString是OKOK=3333。</p>
<p>这个用途特别大。我目前用这个方法来避免使用 Response.Redirect 。</p>
]]></content:encoded>
			<wfw:commentRss>http://www.yinux.com/2006/03/context_rewritepath__context_server_transfer_avoid_the_use_of_res_/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>这么晚才考试，不爽</title>
		<link>http://www.yinux.com/2006/01/so_late_before_the_examination_/</link>
		<comments>http://www.yinux.com/2006/01/so_late_before_the_examination_/#comments</comments>
		<pubDate>Mon, 16 Jan 2006 20:40:31 +0000</pubDate>
		<dc:creator>goodbee</dc:creator>
				<category><![CDATA[华中科大]]></category>
		<category><![CDATA[hust]]></category>

		<guid isPermaLink="false">http://www.yinux.com/?p=21</guid>
		<description><![CDATA[学校让考研的爽了一把，把期考放在考研之后，还居然还间隔几天，以便复习。郁闷。这种烂课在大二大三都好费力，居然放在大四，我们学院真的疯了，毕业设计又因为两个系主任意见不合弄得悬而未决，下学期二月中旬就要去北京了。还一堆烂事。寒假前看来又没时间玩了。寒假后就忙着拜年而已。最后一个寒假，就这么无聊过了！... [...]]]></description>
			<content:encoded><![CDATA[<p>学校让考研的爽了一把，把期考放在考研之后，还居然还间隔几天，以便复习。郁闷。这种烂课在大二大三都好费力，居然放在大四，我们学院真的疯了，毕业设计又因为两个系主任意见不合弄得悬而未决，下学期二月中旬就要去北京了。还一堆烂事。寒假前看来又没时间玩了。寒假后就忙着拜年而已。最后一个寒假，就这么无聊过了！</p>
]]></content:encoded>
			<wfw:commentRss>http://www.yinux.com/2006/01/so_late_before_the_examination_/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
