Re: [GD-Windows] Dialog doesn't move
Brought to you by:
vexxed72
From: Jon W. <hp...@mi...> - 2006-04-30 00:04:37
|
Martin Slater wrote: > If your in a window hook don't you want to let the original window > handler get a look in with something like > > return CallWindowProc(m_oldWindowProc, hwnd, message, wParam, > lParam); > > not sure if this applies to your situation or not but may help;) It applies, although I already do it. Because I use SetWindowsHookEx(), I don't get the old hook directly; instead I get a handle that I call through CallNextHookEx(), but it's the same idea. (The nice thing about Ex is that you can un-install yourself safely) So, no, that wasn't the problem, either. But thanks! Cheers, / h+ |