2009年10月2日 星期五

Kill process inWindows

taskkill /IM ParserAPN.exe /F
成功: 處理程序 "ParserAPN.exe" (PID 11092) 已經終止了。



Reference:
http://diary.tw/tim/589

透過Facebook分享

CString 轉成 DWORD

CString strValue = L"12345";
DWORD dwNumber = (DWORD)_wtol(csData);

透過Facebook分享

2009年10月1日 星期四

blogger 搜尋功能有點遜

今天用blogger上方的search查詢自己blog的內容

Winerror.h

居然找不到

用google search engine
居然找不到

見鬼了

紀錄一下
Winerror.h site:nelsonchunglife.blogspot.com

透過Facebook分享

讓Firefox也像Chrome一樣擁有開啟新分頁選單

你可以使用Speed Dial

https://addons.mozilla.org/zh-TW/firefox/addon/4810

感謝Auron叔叔

透過Facebook分享

2009年9月30日 星期三

用BloggerAds賺錢

不知不覺
我已經用BloggerAds賺到一筆三位數的費用嚕
看來
我應該繼續好好經營我的部落格才行

鐵證如山



這個廣告主
不需要觀看者點選該廣告才支付你費用
只要有人點選觀看你的網頁
就可以累積

透過Facebook分享

RasDial回傳值的意義

需要參考
RASERROR.H

#define RASBASE 600
#define SUCCESS 0
#define PENDING                              (RASBASE+0)
#define ERROR_PORT_DISCONNECTED              (RASBASE+19)
/*
* The port is disconnected.%0
*/
#define ERROR_PORT_NOT_AVAILABLE             (RASBASE+33)
/*
* The port is already in use or is not configured for Remote Access dial out.%0
*/


Reference:
http://doc.ddart.net/msdn/header/include/raserror.h.html
http://www.cs.scranton.edu/~beidler/Ada/win32/win32-raserror.html

透過Facebook分享