国产探花免费观看_亚洲丰满少妇自慰呻吟_97日韩有码在线_资源在线日韩欧美_一区二区精品毛片,辰东完美世界有声小说,欢乐颂第一季,yy玄幻小说排行榜完本

首頁 > 開發 > 綜合 > 正文

使用VB在應用程序中注冊熱鍵

2024-07-21 02:20:58
字體:
來源:轉載
供稿:網友
'窗體中
option explicit

private sub form_load()
dim ret as long
'記錄原來的window程序地址
prewinproc = getwindowlong(me.hwnd, gwl_wndproc)
'用自定義程序代替原來的window程序
ret = setwindowlong(me.hwnd, gwl_wndproc, addressof wndproc)
idhotkey = 1 'in the range &h0000 through &hbfff
modifiers = mod_alt '輔助鍵為alt
uvirtkey1 = vbkeyq '注冊的熱鍵為alt+q
'注冊熱鍵
ret = registerhotkey(me.hwnd, idhotkey, modifiers, uvirtkey1)
if ret = 0 then
msgbox "注冊熱鍵失敗,請使用其它熱鍵!", vbcritical, "錯誤"
end if
end sub

private sub form_queryunload(cancel as integer, unloadmode as integer)
dim ret as long
'取消message的截取,使之送往原來的window程序
ret = setwindowlong(me.hwnd, gwl_wndproc, prewinproc)
call unregisterhotkey(me.hwnd, uvirtkey1)
end sub

'模塊中

'以下程序放在模塊中
option explicit

declare function setwindowlong lib "user32" alias "setwindowlonga" (byval hwnd as long, byval nindex as long, byval dwnewlong as long) as long
declare function getwindowlong lib "user32" alias "getwindowlonga" (byval hwnd as long, byval nindex as long) as long
declare function callwindowproc lib "user32" alias "callwindowproca" (byval lpprevwndfunc as long, byval hwnd as long, byval msg as long, byval wparam as long, byval lparam as long) as long
declare function registerhotkey lib "user32" (byval hwnd as long, byval id as long, byval fsmodifiers as long, byval vk as long) as long
declare function unregisterhotkey lib "user32" (byval hwnd as long, byval id as long) as long

public const wm_hotkey = &h312
public const mod_alt = &h1
public const mod_control = &h2
public const mod_shift = &h4
public const gwl_wndproc = (-4)

public prewinproc as long
public modifiers as long, uvirtkey1 as long, idhotkey as long

private type talong
ll as long
end type

private type t2int
lword as integer
hword as integer
end type

public function wndproc(byval hwnd as long, byval msg as long, byval wparam as long, byval lparam as long) as long
dim lp as talong, i2 as t2int

if msg = wm_hotkey then
if wparam = idhotkey then
lp.ll = lparam
lset i2 = lp
if (i2.lword = modifiers) and i2.hword = uvirtkey1 then
form1.visible = not form1.visible
end if
end if
end if
'如果不是熱鍵信息則調用原來的程序
wndproc = callwindowproc(prewinproc, hwnd, msg, wparam, lparam)
end function


發表評論 共有條評論
用戶名: 密碼:
驗證碼: 匿名發表
主站蜘蛛池模板: 昆明市| 涡阳县| 河曲县| 大冶市| 永登县| 邓州市| 当雄县| 顺义区| 南丰县| 黄山市| 万荣县| 岑溪市| 京山县| 汕尾市| 德化县| 佛学| 大埔县| 泗水县| 东至县| 裕民县| 建德市| 班玛县| 绍兴县| 鄱阳县| 泸州市| 长治县| 和田县| 赤城县| 清水河县| 通州市| 壶关县| 德钦县| 仁布县| 城市| 三亚市| 库车县| 马边| 涿州市| 库车县| 都匀市| 都匀市|