如何作出在程序中一闪而过来提示信息这种效果? (50分)

  • 主题发起人 luckyfire
  • 开始时间
L

luckyfire

Unregistered / Unconfirmed
GUEST, unregistred user!
不是有确定按纽的哪种~~
 
利用spalsh在项目文件中把有有提示的的窗体该为手动删除。
 
比如
Label.Caption := '提示1';
Label.Refresh;
Label.Caption := '提示2';
Label.Refresh;
就可以做倒
 
以上两中方式都可以
还有一种,采用定时器!
 
哦..多谢关住我的问题
采用定时器的方法,能不能再说的详细一些??多谢~
 
procedure TForm1.Timer1Timer(Sender: TObject);
begin
Timer1.Enabled := False;
Label1.Visible := not Label1.Visible;
end;
 
去http://www.delphibbs.com/delphibbs/dispq.asp?lid=1985137
看看吧,保证你有个满意的答案!
 
多人接受答案了。
 
顶部