码迷,mamicode.com
首页 > 其他好文 > 详细

delphi 使用进度条查看浏览器状态

时间:2014-08-01 12:57:31      阅读:168      评论:0      收藏:0      [点我收藏+]

标签:http   color   使用   os   strong   io   for   ar   

使用进度条查看浏览器状态
 
 
procedure TForm1.WebBrowser1ProgressChange(ASender: TObject; Progress,
  ProgressMax: Integer);
begin
  ProgressBar1.Max:=ProgressMax;
  if Progress = -1 then
     //ProgressBar1.Visible:=false
  else
  begin
    ProgressBar1.Position := Progress;
    ProgressBar1.Visible := True;
  end;
  if  ProgressBar1.Position = ProgressMax then
    //ProgressBar1.Visible:=False;
end;




delphi 使用进度条查看浏览器状态,布布扣,bubuko.com

delphi 使用进度条查看浏览器状态

标签:http   color   使用   os   strong   io   for   ar   

原文地址:http://www.cnblogs.com/xe2011/p/3884324.html

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