Search the Community
Showing results for tags '_winapi_setwindowlong'.
-
Function Reference _GUIRegisterMsgEx.au3 Register a user defined function for a known Windows Message ID (WM_MSG) to an individual ctrl using Call Back! Sintax: _GUICtrlMsg_Register( controlID, MsgID, "Function" ) _GUICtrlMsg_UnRegister( hWnd [, MsgID ]) Supports: ; AutoIt GUI controls to regis...
- 15 replies
-
- guiregistermsg
- dllcallbackregister
- (and 2 more)
-
Hey guys, I ran into a problem when I wanted to delete items of a listview using the delete key. My approach is to register my own WndProc for the listview and then filter the $WM_GETDLGCODE msg and then call the original WndProc. That works like a charm. The problem is that when the listvie...