<?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>Horn Network &#187; 問題與解決</title>
	<atom:link href="http://klcin.tw/net/category/q-a/feed" rel="self" type="application/rss+xml" />
	<link>http://klcin.tw/net</link>
	<description>Horn Network (.NET, ASP.NET, C#, VB.NET, JavaScript, Ubuntu, Android ...)</description>
	<lastBuildDate>Fri, 04 Mar 2011 07:25:53 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.1</generator>
		<item>
		<title>[C#]程式幫您按按鈕（SendKey &amp; SendMessage）</title>
		<link>http://klcin.tw/net/csharp-sendkey-sendmessage</link>
		<comments>http://klcin.tw/net/csharp-sendkey-sendmessage#comments</comments>
		<pubDate>Fri, 05 Dec 2008 17:31:21 +0000</pubDate>
		<dc:creator>klcintw</dc:creator>
				<category><![CDATA[C#]]></category>
		<category><![CDATA[問題與解決]]></category>
		<category><![CDATA[BN_CLICKED]]></category>
		<category><![CDATA[FindWindow]]></category>
		<category><![CDATA[FindWindowEx]]></category>
		<category><![CDATA[GetDlgCtrlID]]></category>
		<category><![CDATA[SendKey]]></category>
		<category><![CDATA[SendMessage]]></category>
		<category><![CDATA[WM_COMMAND]]></category>

		<guid isPermaLink="false">http://klcin.tw/net/?p=87</guid>
		<description><![CDATA[前言 專案中有個程式負責透過 ACDSee 列印（ProcessStartInfo.Verb=”Print”）各種圖檔。但 ACDSee 在列印時會出現讓使用者設定格式、頁首頁尾、印表機選項的視窗出現，要按下「列印(P)」之後才會真的開始列印，所以程式必須在開始工作時偵測 ACDSee 的狀態並且按下列印鈕。 方法如下： hWnd = FindWindow(null,”ACDSee &#8211; 列印”); // 尋找 ACDSee 的列印視窗 SetForegroundWindow(hWnd); // 將視窗帶到前景 SendKeys.SendWait(“{ENTER}”); // 送出 ENTER 鍵按列印鈕 事前測試都OK，但安裝到客戶的機器上卻經常發生沒有自動按列印鈕而卡住的問題。原以為是被其它程式干擾{ENTER}的發送，但奇怪的是同事在現場怎麼測試都無法重現問題，一離開不久客戶就反應問題又發生了。 最後，細心的同事發現是因為機器一段時間沒人操作就會被鎖住(lock)，流程卡住的問題就開始了！ 推測：當系統 lock 時，畫面看不到 ACDSee 的視窗（但 FindWindow 可以找到）所以 SendKey 無法送到正確的視窗。 解法 用 SendMessage 發送 WM_COMMAND 程式（C版） HWND hWnd = ::FindWindow(NULL, &#34;ACDSee - Print&#34;); if(NULL != hWnd) { HWND [...]]]></description>
			<content:encoded><![CDATA[<h2>前言</h2>
<p>專案中有個程式負責透過 <a href="http://tw.acdsee.com/zh-tw/" target="_blank">ACDSee</a> 列印（ProcessStartInfo.Verb=”Print”）各種圖檔。但 ACDSee 在列印時會出現讓使用者設定格式、頁首頁尾、印表機選項的視窗出現，要按下「列印(P)」之後才會真的開始列印，所以程式必須在開始工作時偵測 ACDSee 的狀態並且按下列印鈕。</p>
<p>方法如下：</p>
<ol>
<li>hWnd = <a href="http://msdn.microsoft.com/en-us/library/ms633499.aspx" target="_blank">FindWindow</a>(null,”ACDSee &#8211; 列印”); // 尋找 ACDSee 的列印視窗 </li>
<li><a href="http://msdn.microsoft.com/en-us/library/ms633539(VS.85).aspx" target="_blank">SetForegroundWindow</a>(hWnd); // 將視窗帶到前景 </li>
<li><a href="http://msdn.microsoft.com/en-us/library/system.windows.forms.sendkeys.sendwait(VS.80).aspx" target="_blank">SendKeys.SendWait</a>(“{ENTER}”); // 送出 ENTER 鍵按列印鈕 </li>
</ol>
<p>事前測試都OK，但安裝到客戶的機器上卻經常發生沒有自動按列印鈕而卡住的問題。原以為是被其它程式干擾{ENTER}的發送，但奇怪的是同事在現場怎麼測試都無法重現問題，一離開不久客戶就反應問題又發生了。</p>
<p>最後，細心的同事發現是因為機器一段時間沒人操作就會被鎖住(lock)，流程卡住的問題就開始了！</p>
<p>推測：當系統 lock 時，畫面看不到 ACDSee 的視窗（但 FindWindow 可以找到）所以 SendKey 無法送到正確的視窗。</p>
<p>  <span id="more-87"></span><br />
<h2>解法</h2>
<p>用 <a href="http://msdn.microsoft.com/en-us/library/ms644950(VS.85).aspx" target="_blank">SendMessage</a> 發送 WM_COMMAND </p>
<h3>程式（C版）</h3>
<pre class="brush: c#">
    HWND hWnd = ::FindWindow(NULL, &quot;ACDSee - Print&quot;);
    if(NULL != hWnd)
    {
        HWND hButton = ::FindWindowEx(hWnd, NULL, &quot;BUTTON&quot;, &quot;&amp;Print&quot;);
        if(NULL != hButton)
        {
            ::PostMessage(hWnd, WM_COMMAND, MAKEWPARAM(::GetDlgCtrlID(hButton), BN_CLICKED),(LPARAM)hButton);
        }
        else
        {
            AfxMessageBox(&quot;Can not find [Print]&quot;);
        }
    }
    else
    {
        AfxMessageBox(&quot;Can not find [ACDSee - Print]&quot;);
    }</pre>
<p>&#160;</p>
<h3>程式（C#版）</h3>
<pre class="brush: c#">
IntPtr hWnd = FindWindow(null, &quot;ACDSee - 列印&quot;);
if ( !hWnd.Equals(IntPtrZero) )
{
	IntPtr hButton = FindWindowEx(hWnd, 0, &quot;BUTTON&quot;, &quot;列印(&amp;P)&quot;);
	if ( !hButton.Equals(IntPtrZero) )
	{
		SendMessage(hWnd, WM_COMMAND, GetDlgCtrlID(hButton) , hButton);
	} // if
} // if

/* API 定義*/
[DllImport(&quot;User32.dll&quot;,EntryPoint=&quot;FindWindow&quot;)]
private static extern IntPtr FindWindow(string lpClassName,string lpWindowName); 

[DllImport(&quot;User32.dll&quot;)]
private static extern IntPtr FindWindowEx(IntPtr hwndParent, int hwndChildAfter, string lpszClass, string lpszWindow); 

[DllImport(&quot;user32.dll&quot;)]
public static extern int GetDlgCtrlID(IntPtr hWnd);

[DllImport(&quot;user32.dll&quot;, EntryPoint = &quot;SendMessageA&quot;)]
private static extern int SendMessage(IntPtr hwnd, int wMsg, int wParam, IntPtr lParam);

private const int WM_COMMAND = 0x111;
private const int BN_CLICKED = 0;
</pre>
]]></content:encoded>
			<wfw:commentRss>http://klcin.tw/net/csharp-sendkey-sendmessage/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>ASUS Eee PC 900 安裝 Ubuntu 8.04 後設定</title>
		<link>http://klcin.tw/net/asus-eee-pc-900-ubuntu-804-post-installation</link>
		<comments>http://klcin.tw/net/asus-eee-pc-900-ubuntu-804-post-installation#comments</comments>
		<pubDate>Mon, 18 Aug 2008 12:00:06 +0000</pubDate>
		<dc:creator>klcintw</dc:creator>
				<category><![CDATA[Ubuntu]]></category>
		<category><![CDATA[問題與解決]]></category>
		<category><![CDATA[EeePC]]></category>

		<guid isPermaLink="false">http://klcin.tw/net/?p=60</guid>
		<description><![CDATA[機器：ASUS Eee PC 900 (20GB) 作業系統：Ubuntu 8.04 kernel 2.6.24-19 安裝在 SDHC 8GB 卡上。 900系列比700系列還難裝，遇到不少問題也重灌不少次。 上網找了許多資料試了很多次，把有用的記錄下來。 無法開機（startup） 有線網路不通（wired, ethernet） 無線網路不通（wireless, wifi） 無法關機（shutdown） 觸控板（touchpad ） 螢幕解析度（screen resolution） （startup） 情況： Ubuntu 安裝完後重開機，卻發現進度條突然停住不動無法完成開機。 改用 recovery mode 開機會發現等在某一行指令很久很久。最後終於進入系統後查看系統日誌（系統＼設置）會發現在某一行指令下方有類似如下的訊息。 Clocksource tsc unstable 解決方法： 在開 grub （開機選擇模式的畫面）光棒移到正常開機選項。 按 e 編輯 kernel 行的參數 在最後面加上： clocksource=acpi_pm 這方法只能應急，下次開機還要再做一次。 成功進入系統後打開終端機（Application＼附屬應用程式） sudo gedit /boot/grub/menu.lst 加上參數。 有線網路不通（wired, ethernet） [...]]]></description>
			<content:encoded><![CDATA[<p>機器：ASUS Eee PC 900 (20GB)    <br />作業系統：Ubuntu 8.04 kernel 2.6.24-19 安裝在 SDHC 8GB 卡上。</p>
<p>900系列比700系列還難裝，遇到不少問題也重灌不少次。    <br />上網找了許多資料試了很多次，把有用的記錄下來。</p>
<ul>
<li>無法開機（startup）</li>
<li>有線網路不通（wired, ethernet）</li>
<li>無線網路不通（wireless, wifi）</li>
<li>無法關機（shutdown）</li>
<li>觸控板（touchpad ）</li>
<li>螢幕解析度（screen resolution）</li>
</ul>
<p><span id="more-60"></span><br />
<h2>（startup）</h2>
<p>情況：</p>
<ul>
<li>Ubuntu 安裝完後重開機，卻發現進度條突然停住不動無法完成開機。 </li>
<li>改用 recovery mode 開機會發現等在某一行指令很久很久。最後終於進入系統後查看系統日誌（系統＼設置）會發現在某一行指令下方有類似如下的訊息。<br />
<blockquote>Clocksource tsc unstable </p></blockquote>
</li>
</ul>
<p>解決方法：</p>
<ul>
<li>在開 grub （開機選擇模式的畫面）光棒移到正常開機選項。      <br />按 e 編輯 kernel 行的參數       <br />在最後面加上：<br />
<blockquote>clocksource=acpi_pm</p></blockquote>
<p>這方法只能應急，下次開機還要再做一次。 </li>
<li>成功進入系統後打開終端機（Application＼附屬應用程式）     <br /> 
<pre class="brush: bash">sudo gedit /boot/grub/menu.lst</pre>
<p>加上參數。      <br /><a href="http://klcin.tw/net/images/ASUSEeePC900Ubuntu8.04_A55C/grub.png"><img title="grub" style="border-right: 0px; border-top: 0px; border-left: 0px; border-bottom: 0px" height="154" alt="grub" src="http://klcin.tw/net/images/ASUSEeePC900Ubuntu8.04_A55C/grub_thumb.png" width="244" border="0" /></a> </li>
</ul>
<h2>有線網路不通（wired, ethernet）</h2>
<p>情況：網路線插上後仍然無法上網。（重裝多次只曾經發生過一次。）</p>
<p>解決方法：關機、拔掉電源、拆下電池、裝回電池、插上電池，重新開機。</p>
<h2>無線網路不通（wireless, wifi）</h2>
<p>情況：看不到 wifi 的設定。</p>
<p>解決方法：打開終端機（Application＼附屬應用程式）執行下列指令</p>
<p>
<pre class="brush: bash">sudo apt-get update
sudo apt-get install build-essential
wget &#039;http://snapshots.madwifi.org/madwifi-hal-0.10.5.6-current.tar.gz&#039;
tar zxvf madwifi-hal-0.10.5.6-current.tar.gz
cd madwifi-hal-0.10.5.6-*  ## 要改
make clean
make
sudo make install
sudo reboot</pre>
</p>
<p><a href="http://klcin.tw/net/images/ASUSEeePC900Ubuntu8.04_A55C/wifi.png"><img title="wifi" style="border-right: 0px; border-top: 0px; border-left: 0px; border-bottom: 0px" height="163" alt="wifi" src="http://klcin.tw/net/images/ASUSEeePC900Ubuntu8.04_A55C/wifi_thumb.png" width="244" border="0" /></a> </p>
<h2>無法關機（shutdown）</h2>
<p>情況：關機後螢幕已經變黑但電源燈還亮著。保溫（誤）</p>
<p>解決方法：打開終端機（Application＼附屬應用程式）執行下列指令</p>
<p>
<pre class="brush: bash">sudo gedit /etc/init.d/halt</pre>
</p>
<p>在 do_stop() { 下一行加上 「modprobe -r snd-hda-intel 」</p>
<h2>觸控板（Touchpad ）</h2>
<p>情況：只有單純的滑鼠功能。劃右側畫面不會捲動。</p>
<p>解決方法：打開終端機（Application＼附屬應用程式）執行下列指令</p>
<p>
<pre class="brush: bash">wget &#039;http://corey-m.com/blog/wp-content/uploads/2008/05/mouse.tar.gz&#039;
tar zxvf mouse.tar.gz
cd /lib/modules/2.6.24-19-generic/kernel/drivers/input/mouse # 可能要改
sudo cp psmouse.ko psmouse.ko.sav
sudo cp ~/mouse/psmouse.ko .
sudo reboot</pre>
</p>
<p>重開機後要編輯 /etc/X11/xorg.conf
<pre class="brush: bash">sudo gedit /etc/X11/xorg.conf</pre>
</p>
<p>找到「Identifier &#8216;Synaptics Touchpad&#8217;」的區段，在區段結束前加上「SHMConfig "true"」<br /><a href="http://klcin.tw/net/images/ASUSEeePC900Ubuntu8.04_A55C/Screenshotxorg.confetcX11gedit.png"><img style="border-right: 0px; border-top: 0px; border-left: 0px; border-bottom: 0px" height="162" src="http://klcin.tw/net/images/ASUSEeePC900Ubuntu8.04_A55C/Screenshotxorg.confetcX11gedit_thumb.png" width="244" border="0" /></a> </p>
<p>安裝套件：
<pre class="brush: bash">sudo apt-get install gsynaptics</pre>
</p>
<h2>螢幕解析度（Screen Resolution）</h2>
<p>情況：無法調到1024&#215;600。</p>
<p>解決方法：打開終端機（Application＼附屬應用程式）執行下列指令</p>
<p>
<pre class="brush: bash">sudo apt-get install 915resolution
sudo gedit /etc/X11/xorg.conf</pre>
<p>加上或修改</p>
<blockquote><p>Section "Device"<br />
      Identifier      "Configured Video Device"<br />
      <b>Driver          "intel"</b><br />
EndSection</p></blockquote>
<p><a href="http://klcin.tw/net/wp-content/uploads/2008/08/screenshotxorgconfetcx11gedit.png"><img title="Screenshot-xorg.conf (-etc-X11) - gedit" style="border-right: 0px; border-top: 0px; border-left: 0px; border-bottom: 0px" height="165" alt="Screenshot-xorg.conf (-etc-X11) - gedit" src="http://klcin.tw/net/wp-content/uploads/2008/08/screenshotxorgconfetcx11gedit-thumb.png" width="244" border="0" /></a>       <br /><a href="http://klcin.tw/net/wp-content/uploads/2008/08/screenshot1.png"><img title="Screenshot-螢幕解析度設定-1" style="border-right: 0px; border-top: 0px; border-left: 0px; border-bottom: 0px" height="244" alt="Screenshot-螢幕解析度設定-1" src="http://klcin.tw/net/wp-content/uploads/2008/08/screenshot1-thumb.png" width="200" border="0" /></a> </p>
<h2>微調</h2>
<p><lu></p>
<li>縮小桌面字型
<pre class="brush: bash">gconftool-2 --set /apps/nautilus/preferences/desktop_font --type string &quot;Sans 8&quot;</pre>
</li>
<li>縮小視窗標題的字型
<pre class="brush: bash">gconftool-2 --set /apps/metacity/general/titlebar_font --type string &quot;Sans Bold 8&quot;</pre>
</li>
<li>按 Alt-F11 可以將應用程式以全螢幕執行
<pre class="brush: bash">gconftool-2 --set /apps/metacity/window_keybindings/toggle_fullscreen --type string &quot;&lt;Alt&gt;F11&quot;</pre>
</li>
<p></lu></p>
<h2>其它問題</h2>
<ul>
<li>麥克風（microphone ）</li>
<li>網路攝影機（webcam）</li>
<li>快速鍵（hotkeys）</li>
<h4>參考資料：</h4>
<ul>
<li><a href="https://help.ubuntu.com/community/EeePC/Fixes" target="_blank">EeePC/Fixes &#8211; Community Ubuntu Documentation</a></li>
<li><a href="http://wiki.eeeuser.com/getting_ubuntu_8.04_to_work_perfectly" target="_blank">Ubuntu 8.04 (Hardy Heron) on the Asus Eee PC [EeeUser Eee PC Wiki]</a></li>
<li><a href="http://www.pricenetwork.ca/showthread.php?threadid=191454&#038;cs=1" target="_blank">Ubuntu 8.0.4 Hardy and the Eee PC 900, Start to Finish &#8211; Canadian Deals Community &#8211; PriceNetwork.ca</a></li>
<li>EeePC 專用的Ubuntu
<ol>
<li><a href="http://www.ubuntu-eee.com/index.php5?title=Main_Page/zh">Ubuntu Eee 8.04</a></li>
<li><a href="http://wiki.eeeuser.com/ubuntu:eeexubuntu:home" target='_blank'>eeeXubuntu 7.10</a></li>
</ol>
</li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://klcin.tw/net/asus-eee-pc-900-ubuntu-804-post-installation/feed</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>收到mail主旨是亂碼！</title>
		<link>http://klcin.tw/net/mail-subject-unreadable</link>
		<comments>http://klcin.tw/net/mail-subject-unreadable#comments</comments>
		<pubDate>Thu, 03 Jul 2008 04:57:29 +0000</pubDate>
		<dc:creator>klcintw</dc:creator>
				<category><![CDATA[問題與解決]]></category>
		<category><![CDATA[email]]></category>
		<category><![CDATA[free]]></category>
		<category><![CDATA[Mail]]></category>
		<category><![CDATA[Outlook]]></category>
		<category><![CDATA[subject]]></category>
		<category><![CDATA[Thunderbird]]></category>
		<category><![CDATA[unicode]]></category>
		<category><![CDATA[Windows Live]]></category>
		<category><![CDATA[亂碼]]></category>
		<category><![CDATA[防毒軟體]]></category>

		<guid isPermaLink="false">http://klcin.tw/net/?p=5</guid>
		<description><![CDATA[不管你用什麼收件軟體（Thunderbird, Outlook, Windows Live Mail…）如果收件匣中出現朋友寄來的信主旨和收（寄）件人卻變成亂碼，很可能是你的防毒軟體搞的鬼！ Windows Live Mail 的亂碼 Thunderbird 的亂碼 後來關閉了 AVG Anti-Virus Free Edition (8.0.135) 的 E-Mail Scanner 功能之後收信就正常了！ 研究： 檢查郵件的原始內容發現，如果主旨（收件人、發件人）是中文而且是用BIG5標示就能正常顯示。 有標示BIG5就正常 沒有標示編碼就會變成亂碼 關閉 E-Mail Scanner 的方法： 開啟AVG Anti-Virus 的使用者介面，點右上角的E-Mail Scanner。 取消「Scan incoming messages（掃描收進來的信件）」，再按「Save changes」儲存變更。 這樣就OK了。 警告：關閉 E-Mail Scanner 功能即表示你收到病毒（或垃圾）信件的機會增加！ PS1:除了等待AVG昇級時修正錯誤，有人知道如何解決嗎？ PS2:還是來去找找其它免費的防毒軟體吧。 延伸閱讀： [下載] 11套免費防毒軟體 （免破解、免買序號 Free Antivirus） 【重灌狂人】 Google 軟體集 &#8211; Norton [...]]]></description>
			<content:encoded><![CDATA[<p>不管你用什麼收件軟體（<a title="Thunderbird" href="http://www.moztw.org/thunderbird/" target="_blank">Thunderbird</a>, Outlook, Windows Live Mail…）如果收件匣中出現朋友寄來的信主旨和收（寄）件人卻變成亂碼，很可能是你的防毒軟體搞的鬼！</p>
<p align="center"><a href="http://klcin.tw/net/images/mail_A0FA/snap066.png" rel="lightbox"><img title="Windows Live Mail" style="border-top-width: 0px; border-left-width: 0px; border-bottom-width: 0px; border-right-width: 0px" height="147" alt="Windows Live Mail" src="http://klcin.tw/net/images/mail_A0FA/snap066_thumb.png" width="420" border="0" /></a>     <br />Windows Live Mail 的亂碼</p>
<p align="center"><a href="http://klcin.tw/net/images/mail_A0FA/snap064.png" rel="lightbox"><img title="snap064" style="border-top-width: 0px; border-left-width: 0px; border-bottom-width: 0px; border-right-width: 0px" height="194" alt="snap064" src="http://klcin.tw/net/images/mail_A0FA/snap064_thumb.png" width="260" border="0" /></a>     <br />Thunderbird 的亂碼</p>
</p>
<p>後來關閉了 <a title="AVG Anti-Virus Free Edition" href="http://free.avg.com/ww.download-avg-anti-virus-free-edition" target="_blank">AVG Anti-Virus Free Edition (8.0.135)</a> 的 E-Mail Scanner 功能之後收信就正常了！</p>
<p><span id="more-5"></span></p>
<p>
<h2>研究：</h2>
</p>
<p>檢查郵件的原始內容發現，如果主旨（收件人、發件人）是中文而且是用BIG5標示就能正常顯示。</p>
<p align="center"><a href="http://klcin.tw/net/images/mail_A0FA/snap065.png" rel="lightbox"><img title="?BIG5?" style="border-top-width: 0px; border-left-width: 0px; border-bottom-width: 0px; border-right-width: 0px" height="196" alt="?BIG5?" src="http://klcin.tw/net/images/mail_A0FA/snap065_thumb.png" width="320" border="0" /></a>     <br />有標示BIG5就正常</p>
<p align="center"><a href="http://klcin.tw/net/images/mail_A0FA/snap063.png" rel="lightbox"><img title="UTF8" style="border-top-width: 0px; border-left-width: 0px; border-bottom-width: 0px; border-right-width: 0px" height="294" alt="UTF8" src="http://klcin.tw/net/images/mail_A0FA/snap063_thumb.png" width="320" border="0" /></a>     <br />沒有標示編碼就會變成亂碼</p>
<p>
<h2>關閉 E-Mail Scanner 的方法：</h2>
</p>
<p>開啟AVG Anti-Virus 的使用者介面，點右上角的E-Mail Scanner。</p>
<p><a href="http://klcin.tw/net/images/mail_A0FA/snap067.png" rel="lightbox"><img title="snap067" style="border-top-width: 0px; border-left-width: 0px; border-bottom-width: 0px; border-right-width: 0px" height="180" alt="snap067" src="http://klcin.tw/net/images/mail_A0FA/snap067_thumb.png" width="244" border="0" /></a> </p>
<p>取消「Scan incoming messages（掃描收進來的信件）」，再按「Save changes」儲存變更。</p>
<p><a href="http://klcin.tw/net/images/mail_A0FA/snap068.png" rel="lightbox"><img title="snap068" style="border-top-width: 0px; border-left-width: 0px; border-bottom-width: 0px; border-right-width: 0px" height="180" alt="snap068" src="http://klcin.tw/net/images/mail_A0FA/snap068_thumb.png" width="244" border="0" /></a> </p>
</p>
</p>
<p>這樣就OK了。</p>
<p><strong><font color="#ff0000">警告：關閉 E-Mail Scanner 功能即表示你收到病毒（或垃圾）信件的機會增加！</font></strong></p>
<p>PS1:除了等待AVG昇級時修正錯誤，有人知道如何解決嗎？    <br />PS2:還是來去找找其它免費的防毒軟體吧。</p>
<h4>延伸閱讀：</h4>
<ul>
<li><a href="http://briian.com/?p=243" target="_blank">[下載] 11套免費防毒軟體 （免破解、免買序號 Free Antivirus） 【重灌狂人】</a> </li>
<li><a href="http://pack.google.com/intl/zh-tw/pack_installer.html?hl=zh-tw&amp;gl=tw&amp;utm_campaign=zhtw&amp;utm_source=zhtw-ha-apac-tw-google&amp;utm_medium=ha&amp;utm_term=%E5%85%8D%E8%B2%BB%E9%98%B2%E6%AF%92%E8%BB%9F%E9%AB%94" target="_blank">Google 軟體集</a> &#8211; Norton Security Scan </li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://klcin.tw/net/mail-subject-unreadable/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
	</channel>
</rss>

