2007年7月30日 星期一

加入Linux Counter

很久之前就知道有這樣的一個網站, 不過到了今天才register.
編號451009, 比我想像的還少...
有興趣的可以到以下網站:

http://counter.li.org/
點選 Get Count! 後填寫資料, 尤其是e-mail要正確,
因為是要拿來做認證使用的.

2007年7月21日 星期六

將wxString用於C++ STL的方式

常常會用到, 看了wxWidget的說明:

wxString::c_str
const wxChar * c_str() const

Returns a pointer to the string data (const char* in ANSI build, const wchar_t* in Unicode build).

這樣就能將wxString轉換給C++ STL使用.

2007年7月17日 星期二

wxString 轉成 int

wxString class並沒有轉換成int的method.
不過可以依照下列的方式轉換:

int x;
wxString string;

x = atoi(string.c_str());