码迷,mamicode.com
首页 > Windows程序 > 详细

Delphi自定义窗口过程WinProc

时间:2015-01-27 14:49:39      阅读:296      评论:0      收藏:0      [点我收藏+]

标签:

unit ScWndProc;

interface
uses Forms, Messages;

const
    DDGM_FOOMSG = WM_USER;  //自定义消息

implementation

uses windows,sysutils,Dialogs;

var
    WProc : Pointer;

function NewWndProc(handle: hWnd; msg,wParam,lParam: LongInt): LongInt ;
stdcall;
begin
    if msg = DDGM_FOOMSG then
        ShowMessage(Format(‘收到自定义消息 $%x‘,[msg]));

    result := CallWindowProc(WProc,handle, msg,wParam,lParam);
end;

initialization
    WProc := Pointer(SetWindowLong(application.Handle,GWL_WNDPROC
        ,integer(@NewWndProc)));                                             
end.

//发送消息
SendMessage(application.Handle,DDGM_FOOMSG,0,0);

Delphi自定义窗口过程WinProc

标签:

原文地址:http://www.cnblogs.com/wucg/p/4252834.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!