2009年11月30日 星期一

支援多種IE系列的瀏覽器~Internet Explorer Collection

官方網站:http://finalbuilds.edskes.net/iecollection.htm
語言:英語
軟體版本:Internet Explorer Collection 1.6.0.3
備註:支援以下IE系列
  • Internet Explorer 1.0 (4.40.308)
  • Internet Explorer 1.5 (0.1.0.10)
  • Internet Explorer 2.01 (2.01.046)
  • Internet Explorer 3.0 (3.0.1152)
  • Internet Explorer 3.01 (3.01.2723)
  • Internet Explorer 3.03 (3.03.2925)
  • Internet Explorer 4.01 (4.72.3110.0)
  • Internet Explorer 5.01 (5.00.3314.2100)
  • Internet Explorer 5.5 (5.51.4807.2300)
  • Internet Explorer 6.0 (6.00.2800.1106)
  • Internet Explorer 6.0 (6.00.2900.2180)
  • Internet Explorer 7.0 (7.00.5730.13)
  • Internet Explorer 8.0 (8.00.6001.18702)

可同時使用多種IE系列的瀏覽器~IETester

官方網站:http://my-debugbar.com/wiki/IETester/HomePage
語言:多國系語言(含繁體中文)
軟體版本:IETester v0.4.2
備註:軟體支援IE5.5、IE6、IE7、IE8瀏覽器

2009年11月17日 星期二

不使用Windows Live Mail換回Outlook Express瀏覽Mail

在安裝或更新Windows MSN時,不小心將Windows Live Mail安裝上去,可是又用不習慣,如何換回Outlook Express的使用方式?












解決方式:

1.先到『控制台』→『新增或移除程式』
2.選擇『Windows Live 程式集』,點選『變更/移除』
3.選擇『解除安裝』,再點選要移除的程式
4.移除完到『工具』→『資料夾選項』→『檔案類型』
5.選擇EML的副檔關聯(此時如果沒有EML關聯,使用新增方式新增一個)
6.選擇『進階』→『變更圖示』
7.檔案圖示的路徑為C:\Program Files\Outlook Express\msimn.exe(選擇執行檔喔)
8.將修改圖示變回信封的樣子
9.修改完圖示後,點選『變更』,將所開啟的程式變更為Outlook Express
10.修改完後即可將mail改回Outlook Express瀏覽

2009年11月12日 星期四

VB.NET 中文、全形字元以2個byte計算

要計算中文、全形字元在VB6時是用 LenB(StrConv(strTemp, vbFromUnicode))方式。

在VB.NET下的話,要使用以下方式,因為VB.NET已沒有LenB可使用。

Dim strTemp As String = "測試中文字 TEST CHINESE"
Debug.writeLine(System.Text.Encoding.Default.GetBytes(strTemp).Length) '23byte(中間空白也算)