<?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/"
	>

<channel>
	<title>CJH的儲思盆 - 技術.管理.思考 &#187; VB.NET</title>
	<atom:link href="http://mind.cjh.cc/post-tag/vbnet/feed" rel="self" type="application/rss+xml" />
	<link>http://mind.cjh.cc</link>
	<description>小 工 程 師 職 場 打 滾 記 事</description>
	<lastBuildDate>Sun, 19 Apr 2009 09:38:48 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0</generator>
		<item>
		<title>VB.NET中Boolean的轉型</title>
		<link>http://mind.cjh.cc/post-21.html</link>
		<comments>http://mind.cjh.cc/post-21.html#comments</comments>
		<pubDate>Wed, 26 Mar 2008 03:59:09 +0000</pubDate>
		<dc:creator>CJH</dc:creator>
				<category><![CDATA[程設]]></category>
		<category><![CDATA[VB.NET]]></category>

		<guid isPermaLink="false">http://mind.cjh.cc/post-21.html</guid>
		<description><![CDATA[當 Visual Basic 將數字資料型別轉換成 Boolean 時，0 會變成 False，而其他所有值都會變成 True。
當 Visual Basic 將 Boolean 值轉換成數字型別時，False 會變成 0，而 True 會變成 -1。
]]></description>
			<content:encoded><![CDATA[<p>當 Visual Basic 將數字資料型別轉換成 Boolean 時，<strong>0 會變成 False，而其他所有值都會變成 True</strong>。</p>
<p>當 Visual Basic 將 Boolean 值轉換成數字型別時，<strong>False 會變成 0，而 True 會變成 -1</strong>。</p>
]]></content:encoded>
			<wfw:commentRss>http://mind.cjh.cc/post-21.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>My.Computer.FileSystem.SpecialDirectories</title>
		<link>http://mind.cjh.cc/post-19.html</link>
		<comments>http://mind.cjh.cc/post-19.html#comments</comments>
		<pubDate>Thu, 21 Feb 2008 03:03:54 +0000</pubDate>
		<dc:creator>CJH</dc:creator>
				<category><![CDATA[程設]]></category>
		<category><![CDATA[VB.NET]]></category>

		<guid isPermaLink="false">http://mind.cjh.cc/post-19.html</guid>
		<description><![CDATA[注意:此物件下附屬的所有屬性(傳回特殊目錄) 目錄路徑都是 沒有「\」號結尾的
如  My.Computer.FileSystem.SpecialDirectories.Temp
則傳回C:\Documents and Settings\chrischen.ANPS\Local Settings\Temp
若要後接檔名時要自行加上，否則路徑會有錯
]]></description>
			<content:encoded><![CDATA[<p><strong>注意:此物件下附屬的所有屬性(傳回特殊目錄) 目錄路徑都是 沒有「\」號結尾的</strong></p>
<p>如  My.Computer.FileSystem.SpecialDirectories.Temp<br />
則傳回C:\Documents and Settings\chrischen.ANPS\Local Settings\Temp</p>
<p>若要後接檔名時要自行加上，否則路徑會有錯</p>
]]></content:encoded>
			<wfw:commentRss>http://mind.cjh.cc/post-19.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>System.Windows.Forms.ComboBox事件順序</title>
		<link>http://mind.cjh.cc/post-18.html</link>
		<comments>http://mind.cjh.cc/post-18.html#comments</comments>
		<pubDate>Thu, 21 Feb 2008 02:01:29 +0000</pubDate>
		<dc:creator>CJH</dc:creator>
				<category><![CDATA[程設]]></category>
		<category><![CDATA[VB.NET]]></category>

		<guid isPermaLink="false">http://mind.cjh.cc/post-18.html</guid>
		<description><![CDATA[
進入控制項

Enter
GotFocus


離開控制項

LostFocus
Leave
Validating
Validated


下拉選單

DropDown（按下）
DropDownClosed（離開）


下拉選單展開，用滑鼠選擇另一個項目

DropDown
SelectionChangeCommitted
DropDownClosed
SelectedValueChanged
SelectedIndexChanged


下拉選單沒有展開時，用箭頭選擇項目

SelectionChangeCommitted
SelectedValueChanged
SelectedIndexChanged


下拉選單展開時，用箭頭選擇項目，並按下enter送出結果

DropDown
SelectedValueChanged
SelectedIndexChanged
SelectionChangeCommitted
DropDownClosed


編輯顯示的文字（Style為DropDown時)

TextUpdate
TextChanged



]]></description>
			<content:encoded><![CDATA[<ol>
<li>進入控制項
<ul>
<li>Enter</li>
<li>GotFocus</li>
</ul>
</li>
<li>離開控制項
<ul>
<li>LostFocus</li>
<li>Leave</li>
<li>Validating</li>
<li>Validated</li>
</ul>
</li>
<li>下拉選單
<ul>
<li>DropDown（按下）</li>
<li>DropDownClosed（離開）</li>
</ul>
</li>
<li>下拉選單展開，用滑鼠選擇另一個項目
<ul>
<li>DropDown</li>
<li>SelectionChangeCommitted</li>
<li>DropDownClosed</li>
<li>SelectedValueChanged</li>
<li>SelectedIndexChanged</li>
</ul>
</li>
<li>下拉選單沒有展開時，用箭頭選擇項目
<ul>
<li>SelectionChangeCommitted</li>
<li>SelectedValueChanged</li>
<li>SelectedIndexChanged</li>
</ul>
</li>
<li>下拉選單展開時，用箭頭選擇項目，並按下enter送出結果
<ul>
<li>DropDown</li>
<li>SelectedValueChanged</li>
<li>SelectedIndexChanged</li>
<li>SelectionChangeCommitted</li>
<li>DropDownClosed</li>
</ul>
</li>
<li>編輯顯示的文字（Style為DropDown時)
<ul>
<li>TextUpdate</li>
<li>TextChanged</li>
</ul>
</li>
</ol>
]]></content:encoded>
			<wfw:commentRss>http://mind.cjh.cc/post-18.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>System.IO.FileInfo小測試</title>
		<link>http://mind.cjh.cc/post-17.html</link>
		<comments>http://mind.cjh.cc/post-17.html#comments</comments>
		<pubDate>Thu, 21 Feb 2008 01:45:42 +0000</pubDate>
		<dc:creator>CJH</dc:creator>
				<category><![CDATA[程設]]></category>
		<category><![CDATA[VB.NET]]></category>

		<guid isPermaLink="false">http://mind.cjh.cc/post-17.html</guid>
		<description><![CDATA[dim f as new fileinfo("D:\123.xls")
FullName屬性傳回 D:\123.xls (完整路徑)
Name屬性傳回 123.xls (檔案名稱含副檔名)
Extension屬性傳回 .xls (注意前面有加「.」)
]]></description>
			<content:encoded><![CDATA[<p>dim f as new fileinfo("D:\123.xls")</p>
<p>FullName屬性傳回 D:\123.xls (完整路徑)<br />
Name屬性傳回 123.xls (檔案名稱含副檔名)<br />
Extension屬性傳回 .xls (注意前面有加「.」)</p>
]]></content:encoded>
			<wfw:commentRss>http://mind.cjh.cc/post-17.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
