Skip to content

Instantly share code, notes, and snippets.

@tmplinshi
Last active August 29, 2015 14:21
Show Gist options
  • Save tmplinshi/ccd7e124d3ce9b182f6f to your computer and use it in GitHub Desktop.
Save tmplinshi/ccd7e124d3ce9b182f6f to your computer and use it in GitHub Desktop.
; Usage: BlockSysMenu(ControlHwnd)
BlockSysMenu(wParam:="", lParam:="", msg:="", hwnd:="") {
static oHwnd := {}, WM_RBUTTONUP := 0x205, WM_CONTEXTMENU := 0x7B
, ____a := OnMessage(WM_RBUTTONUP, "BlockSysMenu")
, ____b := OnMessage(WM_CONTEXTMENU, "BlockSysMenu")
If !hwnd
Return oHwnd[wParam] := 1
If oHwnd[hwnd] || !oHwnd.MaxIndex() {
If IsLabel("GuiContextMenu") || IsFunc("GuiContextMenu")
SetTimer, GuiContextMenu, -0
Return 0
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment