When subclassing a Form I use this GWL_WNDPROC as in
OldWndProc = SetWindowLong(Me.hwnd, GWL_WNDPROC, AddressOf MainWndProc)
My question is if I subclass something else, like a Textbox, Combobox, Listbox, et, etc, do I still use GWL_WNDPROC or is there another constant I should use?
OldWndProc = SetWindowLong(Me.hwnd, GWL_WNDPROC, AddressOf MainWndProc)
My question is if I subclass something else, like a Textbox, Combobox, Listbox, et, etc, do I still use GWL_WNDPROC or is there another constant I should use?