全部博文(788)
分类:
2008-11-27 21:17:38
用 SetWindowLong 大概代码如下
Txxxform
function NewWinProc(var Message: TMessage): Integer;
下面代码设成你的处理过程
// NewProc, OldProc: Pointer;
NewProc := WinUtils.MakeObjectInstance(NewWinProc);
OldProc := Pointer(GetWindowLong(你的句柄, GWL_WNDPROC));
SetWindowLong(你的句柄, GWL_WNDPROC, Longint(NewProc));
function xxx.NewWinProc(var Message: TMessage): Integer;
begin
if Message.Msg = WM_SIZE then
begin
...
result := 1;
end
else OldProc(Message);
end;
Hook