Archive for 五月, 2010
黃明志「我要回家」求助啟示
Posted by essoduke - 2010 年 05 月 26 日 20:27:30 - 98 User Views不愧是念傳播的,懂得利用媒體平台來自我行銷!加油啊!
[C#] KMClear – 鍵鼠清潔輔助器
Posted by essoduke - 2010 年 05 月 24 日 22:49:22 - 141 User Views首先,這不是能自動幫你清潔鍵鼠的工具 XD
它只是鎖定鍵盤滑鼠讓你在開機的時候可以清潔而已

支援平台:Windows 7, 2008, XP, 2003
環境需求:.Net FrameWork 3.5
檔案下載:KMClear.exe(11KB)
源碼下載:KMClear.zip(112KB – Visual C# 2008 Express)
這類程式有兩個重點要處理,一個是全螢幕執行,另一個就是鍵盤攔截。
全螢幕執行比較簡單,完全不需要 API:
- private void Form1_Load(object sender, EventArgs e)
- {
- this.SetVisibleCore(false);
- this.FormBorderStyle = FormBorderStyle.None;
- this.Left = (Screen.PrimaryScreen.Bounds.Width / 2 - this.Width / 2);
- this.Top = (Screen.PrimaryScreen.Bounds.Height / 2 - this.Height / 2);
- this.SetVisibleCore(true);
- }
另一個則是需要借助 Low-level API 的鍵盤攔截:
- using System;
- using System.Diagnostics;
- using System.Runtime.InteropServices;
- namespace KMClear
- {
- internal class HookAPI
- {
- /* API Assign */
- [DllImport("user32.dll", SetLastError = true)]
- public static extern IntPtr SetWindowsHookEx(int idHook, HookProc lpfn, IntPtr hInstance, uint threadId);
- [DllImport("user32.dll", SetLastError = true)]
- public static extern bool UnhookWindowsHookEx(IntPtr idHook);
- [DllImport("user32.dll", SetLastError = true)]
- public static extern IntPtr CallNextHookEx(IntPtr idHook, int nCode, IntPtr wParam, IntPtr lParam);
- [DllImport("kernel32.dll", CharSet = CharSet.Auto, SetLastError = true)]
- private static extern IntPtr GetModuleHandle(string lpModuleName);
- public delegate IntPtr HookProc(int nCode, IntPtr wParam, IntPtr lParam);
- private static IntPtr hKeyboardHook = IntPtr.Zero;
- private HookProc KeyboardHookProcedure;
- private const int WH_KEYBOARD_LL = 13;
- private const int WM_KEYDOWN = 0x0100;
- /// <summary>
- /// Start Keyboard Hook Process
- /// </summary>
- public void HookStart()
- {
- if (hKeyboardHook == IntPtr.Zero)
- {
- using (Process curProcess = Process.GetCurrentProcess())
- {
- using (ProcessModule curModule = curProcess.MainModule)
- {
- KeyboardHookProcedure = new HookProc(KeyboardHookProc);
- hKeyboardHook = SetWindowsHookEx(WH_KEYBOARD_LL, KeyboardHookProcedure, GetModuleHandle(curModule.ModuleName), 0);
- if (hKeyboardHook == IntPtr.Zero)
- {
- HookStop();
- throw new Exception("SetWindowsHookEx failed.");
- }
- }
- }
- }
- }
- /// <summary>
- /// Stop Keyboard Hook Process
- /// </summary>
- public void HookStop()
- {
- bool retKeyboard = true;
- if (hKeyboardHook != IntPtr.Zero)
- {
- retKeyboard = UnhookWindowsHookEx(hKeyboardHook);
- hKeyboardHook = IntPtr.Zero;
- }
- if (!(retKeyboard)) throw new Exception("UnhookWindowsHookEx failed.");
- }
- /// <summary>
- /// Keyboard Hook Process
- /// </summary>
- /// <param name="nCode"></param>
- /// <param name="wParam"></param>
- /// <param name="lParam"></param>
- /// <returns></returns>
- private IntPtr KeyboardHookProc(int nCode, IntPtr wParam, IntPtr lParam)
- {
- if (nCode >= 0 && wParam == (IntPtr)WM_KEYDOWN)
- {
- int vkCode = Marshal.ReadInt32(lParam);
- Console.WriteLine((System.Windows.Forms.Keys)vkCode);
- return new IntPtr(1);
- }
- return CallNextHookEx(hKeyboardHook, nCode, wParam, lParam);
- }
- }
- }
太極功夫就是神!
Posted by essoduke - 2010 年 05 月 17 日 20:55:21 - 80 User Views這個惡搞得太靠盃了 XD
這個套招得還不錯…
但是這個最精彩!
Windows 7 之大家來找碴
Posted by essoduke - 2010 年 05 月 15 日 00:00:06 - 100 User Views這幾天在寫 VPN 撥號器的時候要一直在 Windows 7 測試路由規則是否正確,所以猛 ping,沒想到讓我發現了錯字 XD
由此可見微軟的中文化團隊是用注音輸入法沒錯(誤)
![]()
–
Windows 7 32Bit Ultimate Edition
如果是夏美醫生的話,可以的唷
Posted by essoduke - 2010 年 05 月 14 日 21:43:48 - 111 User Views自從看了結婚できない男(熟男不結婚)之後,夏川結衣在我心目中的地位就攀升到第一名了!
雖然今年 42 歲了,但是…
如果是夏美醫生的話,還是可以的唷(羞)
Powered by WordPress with GimpStyle Theme design by Horacio Bella.
Entries and comments feeds.
Valid XHTML and CSS.
![[TVBT]Kekkon Dekinai Otoko_Ep_01_ChineseSubbed[21-14-02] [TVBT]Kekkon Dekinai Otoko_Ep_01_ChineseSubbed[21-14-02]](http://essoduke.org/wp-content/uploads/2010/05/TVBTKekkon-Dekinai-Otoko_Ep_01_ChineseSubbed21-14-02-320x320.jpg)
![[TVBT]Kekkon Dekinai Otoko_Ep_01_ChineseSubbed[21-17-52] [TVBT]Kekkon Dekinai Otoko_Ep_01_ChineseSubbed[21-17-52]](http://essoduke.org/wp-content/uploads/2010/05/TVBTKekkon-Dekinai-Otoko_Ep_01_ChineseSubbed21-17-52-320x320.jpg)
![[TVBT]Kekkon Dekinai Otoko_Ep_03_ChineseSubbed[21-44-08] [TVBT]Kekkon Dekinai Otoko_Ep_03_ChineseSubbed[21-44-08]](http://essoduke.org/wp-content/uploads/2010/05/TVBTKekkon-Dekinai-Otoko_Ep_03_ChineseSubbed21-44-08-320x320.jpg)
![[TVBT]Kekkon Dekinai Otoko_Ep_03_ChineseSubbed[21-46-10] [TVBT]Kekkon Dekinai Otoko_Ep_03_ChineseSubbed[21-46-10]](http://essoduke.org/wp-content/uploads/2010/05/TVBTKekkon-Dekinai-Otoko_Ep_03_ChineseSubbed21-46-10-320x320.jpg)
![[TVBT]Kekkon Dekinai Otoko_Ep_03_ChineseSubbed[21-48-17] [TVBT]Kekkon Dekinai Otoko_Ep_03_ChineseSubbed[21-48-17]](http://essoduke.org/wp-content/uploads/2010/05/TVBTKekkon-Dekinai-Otoko_Ep_03_ChineseSubbed21-48-17-320x320.jpg)
![[TVBT]Kekkon Dekinai Otoko_Ep_03_ChineseSubbed[21-50-55] [TVBT]Kekkon Dekinai Otoko_Ep_03_ChineseSubbed[21-50-55]](http://essoduke.org/wp-content/uploads/2010/05/TVBTKekkon-Dekinai-Otoko_Ep_03_ChineseSubbed21-50-55-320x320.jpg)
![[TVBT]Kekkon Dekinai Otoko_Ep_04_ChineseSubbed[21-52-26] [TVBT]Kekkon Dekinai Otoko_Ep_04_ChineseSubbed[21-52-26]](http://essoduke.org/wp-content/uploads/2010/05/TVBTKekkon-Dekinai-Otoko_Ep_04_ChineseSubbed21-52-26-320x320.jpg)
![[TVBT]Kekkon Dekinai Otoko_Ep_04_ChineseSubbed[21-53-56] [TVBT]Kekkon Dekinai Otoko_Ep_04_ChineseSubbed[21-53-56]](http://essoduke.org/wp-content/uploads/2010/05/TVBTKekkon-Dekinai-Otoko_Ep_04_ChineseSubbed21-53-56-320x320.jpg)
![[TVBT]Kekkon Dekinai Otoko_Ep_04_ChineseSubbed[21-56-07] [TVBT]Kekkon Dekinai Otoko_Ep_04_ChineseSubbed[21-56-07]](http://essoduke.org/wp-content/uploads/2010/05/TVBTKekkon-Dekinai-Otoko_Ep_04_ChineseSubbed21-56-07-320x320.jpg)
![[TVBT]Kekkon Dekinai Otoko_Ep_04_ChineseSubbed[21-56-33] [TVBT]Kekkon Dekinai Otoko_Ep_04_ChineseSubbed[21-56-33]](http://essoduke.org/wp-content/uploads/2010/05/TVBTKekkon-Dekinai-Otoko_Ep_04_ChineseSubbed21-56-33-320x320.jpg)
![[TVBT]Kekkon Dekinai Otoko_Ep_04_ChineseSubbed[21-57-21] [TVBT]Kekkon Dekinai Otoko_Ep_04_ChineseSubbed[21-57-21]](http://essoduke.org/wp-content/uploads/2010/05/TVBTKekkon-Dekinai-Otoko_Ep_04_ChineseSubbed21-57-21-320x320.jpg)
![[TVBT]Kekkon Dekinai Otoko_Ep_11_ChineseSubbed[20-24-11] [TVBT]Kekkon Dekinai Otoko_Ep_11_ChineseSubbed[20-24-11]](http://essoduke.org/wp-content/uploads/2010/05/TVBTKekkon-Dekinai-Otoko_Ep_11_ChineseSubbed20-24-11-320x320.jpg)
![[TVBT]Kekkon Dekinai Otoko_Ep_11_ChineseSubbed[20-26-46] [TVBT]Kekkon Dekinai Otoko_Ep_11_ChineseSubbed[20-26-46]](http://essoduke.org/wp-content/uploads/2010/05/TVBTKekkon-Dekinai-Otoko_Ep_11_ChineseSubbed20-26-46-320x320.jpg)
![[TVBT]Kekkon Dekinai Otoko_Ep_11_ChineseSubbed[20-43-09] [TVBT]Kekkon Dekinai Otoko_Ep_11_ChineseSubbed[20-43-09]](http://essoduke.org/wp-content/uploads/2010/05/TVBTKekkon-Dekinai-Otoko_Ep_11_ChineseSubbed20-43-09-320x320.jpg)
![[TVBT]Kekkon Dekinai Otoko_Ep_12_ChineseSubbed_End[20-43-53] [TVBT]Kekkon Dekinai Otoko_Ep_12_ChineseSubbed_End[20-43-53]](http://essoduke.org/wp-content/uploads/2010/05/TVBTKekkon-Dekinai-Otoko_Ep_12_ChineseSubbed_End20-43-53-320x320.jpg)
![[TVBT]Kekkon Dekinai Otoko_Ep_12_ChineseSubbed_End[20-47-39] [TVBT]Kekkon Dekinai Otoko_Ep_12_ChineseSubbed_End[20-47-39]](http://essoduke.org/wp-content/uploads/2010/05/TVBTKekkon-Dekinai-Otoko_Ep_12_ChineseSubbed_End20-47-39-320x320.jpg)
![[TVBT]Kekkon Dekinai Otoko_Ep_12_ChineseSubbed_End[20-51-04] [TVBT]Kekkon Dekinai Otoko_Ep_12_ChineseSubbed_End[20-51-04]](http://essoduke.org/wp-content/uploads/2010/05/TVBTKekkon-Dekinai-Otoko_Ep_12_ChineseSubbed_End20-51-04-320x320.jpg)
![[TVBT]Kekkon Dekinai Otoko_Ep_12_ChineseSubbed_End[20-52-51] [TVBT]Kekkon Dekinai Otoko_Ep_12_ChineseSubbed_End[20-52-51]](http://essoduke.org/wp-content/uploads/2010/05/TVBTKekkon-Dekinai-Otoko_Ep_12_ChineseSubbed_End20-52-51-320x320.jpg)
![[TVBT]Kekkon Dekinai Otoko_Ep_12_ChineseSubbed_End[20-57-43] [TVBT]Kekkon Dekinai Otoko_Ep_12_ChineseSubbed_End[20-57-43]](http://essoduke.org/wp-content/uploads/2010/05/TVBTKekkon-Dekinai-Otoko_Ep_12_ChineseSubbed_End20-57-43-320x320.jpg)
![[TVBT]Kekkon Dekinai Otoko_Ep_12_ChineseSubbed_End[21-31-03] [TVBT]Kekkon Dekinai Otoko_Ep_12_ChineseSubbed_End[21-31-03]](http://essoduke.org/wp-content/uploads/2010/05/TVBTKekkon-Dekinai-Otoko_Ep_12_ChineseSubbed_End21-31-03-320x320.jpg)
![[TVBT]Kekkon Dekinai Otoko_Ep_12_ChineseSubbed_End[21-31-45] [TVBT]Kekkon Dekinai Otoko_Ep_12_ChineseSubbed_End[21-31-45]](http://essoduke.org/wp-content/uploads/2010/05/TVBTKekkon-Dekinai-Otoko_Ep_12_ChineseSubbed_End21-31-45-320x320.jpg)
![[TVBT]Kekkon Dekinai Otoko_Ep_12_ChineseSubbed_End[21-32-23] [TVBT]Kekkon Dekinai Otoko_Ep_12_ChineseSubbed_End[21-32-23]](http://essoduke.org/wp-content/uploads/2010/05/TVBTKekkon-Dekinai-Otoko_Ep_12_ChineseSubbed_End21-32-23-320x320.jpg)
![[TVBT]Kekkon Dekinai Otoko_Ep_12_ChineseSubbed_End[21-34-10] [TVBT]Kekkon Dekinai Otoko_Ep_12_ChineseSubbed_End[21-34-10]](http://essoduke.org/wp-content/uploads/2010/05/TVBTKekkon-Dekinai-Otoko_Ep_12_ChineseSubbed_End21-34-10-320x320.jpg)



