win32 listbox control的操作=>http://realchecko.blogspot.tw/2010/05/win32-listbox-control.html
- Apr 26 Tue 2016 15:30
-
各種rrrrreference
(控制項) {
win32 listbox control的操作=>http://realchecko.blogspot.tw/2010/05/win32-listbox-control.html
win32 listbox control的操作=>http://realchecko.blogspot.tw/2010/05/win32-listbox-control.html
- Apr 13 Wed 2016 17:24
-
[General]網誌程式碼區塊產生
http://formatmysourcecode.blogspot.tw/
http://guli86400.pixnet.net/blog/post/105307192-%E5%A6%82%E4%BD%95%E5%8A%A0%E5%AF%AC%E5%85%A7%E6%96%87%E7%9A%84%E7%89%88%E9%9D%A2%E9%85%8D%E7%BD%AE
http://guli86400.pixnet.net/blog/post/105307192-%E5%A6%82%E4%BD%95%E5%8A%A0%E5%AF%AC%E5%85%A7%E6%96%87%E7%9A%84%E7%89%88%E9%9D%A2%E9%85%8D%E7%BD%AE
- Apr 01 Mon 2019 11:48
-
[Linux][CentOS]檔案管理工具Midnight Commander
- Apr 01 Mon 2019 11:26
-
[Linux][CentOS]yum下載rpm並離線安裝
- May 09 Tue 2017 18:13
-
[C/C++][MFC]依據字串設定Static Text寬度
- Mar 03 Fri 2017 13:59
-
[C/C++]static 參考網站
http://blog.xuite.net/kamory0931/fightdreamer/45970401-C%2B%2B%E7%9A%84static
- Oct 13 Thu 2016 15:00
-
[C/C++]各種遇到的型別轉換
char[]轉成char*
參考網址:http://stackoverflow.com/questions/9627962/is-it-possible-to-convert-char-to-char-in-c
參考網址:http://stackoverflow.com/questions/9627962/is-it-possible-to-convert-char-to-char-in-c
- Aug 04 Thu 2016 16:35
-
[C/C++]MultiByte.WideChar.UTF8互轉
- Aug 02 Tue 2016 14:15
-
[C/C++][MFC]取得系統時間+結構+簡易用法
- Jul 13 Wed 2016 11:33
-
[C/C++][MFC]一路建立資料夾
// create dir (if dir doesn't exist)
// dst是full path
for ( int i = 3, cur = 3; i < dst.GetLength(); i++ ) { // 3是因為有"C:\",把C槽本身當作一個資料夾
if ( dst.GetAt(i) == L'\\' ) {
if (!CFile::GetStatus(dst.Left(i), filestatus) ) // 判斷當前路徑如果不存在
if ( !CreateDirectory(dst.Left(i), NULL) ) // 如果建立資料夾失敗
MessageBox(NULL,L"create dir fail!",L"ppppppppp",MB_OK);
} // end if
}
- Jul 07 Thu 2016 09:38
-
[C/C++]偵測實體硬碟為SSD or HDD
- Jun 22 Wed 2016 10:38
-
[C/C++][MFC][控制項] ListBox設定水平捲軸(SetHorizontalExtent)範例
