首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > .NET > .NET >

incompatible types:‘tnotifyevent’and'string'该怎么处理

2014-04-29 
incompatible types:‘tnotifyevent’and'string'脚本事件处理函数出错:unit1.pas{32}:incompatib

incompatible types:‘tnotifyevent’and'string'
脚本事件处理函数出错:unit1.pas{32}:incompatible types:‘tnotifyevent’and'string'
下面是源码:
var
b: TButton;
Form1: TForm;
procedure ButtonClick(Sender: TButton);
begin
ShowMessage(Sender.Name);
end;
begin
b := TButton.Create(Form1);
b.Parent := Form1;
b.OnClick := @ButtonClick; // same as b.OnClick := 'ButtonClick'
b.OnClick := nil; // clear the event
end.

刚接触delphi  实在解决不了  求各位解决啊!!!

[解决办法]
procedure ButtonClick(sender:TObject);

b.OnClick := Self.ButtonClick

热点排行