N
netbug
Unregistered / Unconfirmed
GUEST, unregistred user!
一:请看下例:
type
TForm1 = class(TForm)
Button1: TButton;
private
procedure MouseEnter(var msg:TMessage);message CM_MouseEnter;
{ Private declarations }
public
{ Public declarations }
end;
var
Form1: TForm1;
implementation
procedure TForm1.MouseEnter(var msg:TMessage);
begin
inherited;
showmessage('hello');
end;
我原本的意思是:当鼠标移到Button按纽时,显示'hello'信息,可现在
当鼠标一移到窗体时就显示'hello'信息,我该如何解决此问题?
另外:我想当鼠标移出Button按纽时就让信息消失,这又该如何做呢?
二:请看:
procedure TForm1.Button1Click(Sender: TObject);
var s:string;
begin
s:='hello';
writeln(s);
end;
编译能通过,但在运行时出错,我想问:writeln语句难道在Delphi中
不能用吗?谢谢。
type
TForm1 = class(TForm)
Button1: TButton;
private
procedure MouseEnter(var msg:TMessage);message CM_MouseEnter;
{ Private declarations }
public
{ Public declarations }
end;
var
Form1: TForm1;
implementation
procedure TForm1.MouseEnter(var msg:TMessage);
begin
inherited;
showmessage('hello');
end;
我原本的意思是:当鼠标移到Button按纽时,显示'hello'信息,可现在
当鼠标一移到窗体时就显示'hello'信息,我该如何解决此问题?
另外:我想当鼠标移出Button按纽时就让信息消失,这又该如何做呢?
二:请看:
procedure TForm1.Button1Click(Sender: TObject);
var s:string;
begin
s:='hello';
writeln(s);
end;
编译能通过,但在运行时出错,我想问:writeln语句难道在Delphi中
不能用吗?谢谢。