RegisterHotKey

    RegisterHotKey - Windows Hotkey 설정

    RegisterHotKey함수는 특정 Key의 조합으로 Hotkey를 설정하여 특정 Process나 Software에 설정한 Hotkey를 활용할 수 있도록 합니다. Declare Function RegisterHotKey Lib "user32" Alias "RegisterHotKey" (ByVal hwnd As Integer, ByVal id As Integer, ByVal fsModifiers As Integer, ByVal vk As Integer) As Integer ▶VB.NET 선언 RegisterHotKey(handle, id, mod_key, key) ▶VB.NET 호출 [DllImport("user32.dll")] private static extern int RegisterHotKey(..