如何使桌面右下角的小图标闪烁???

解决方案 »

  1.   

    用一个TTimer和一个TImageList就可了
    在TTimer的OnTimer中写:
      private 
        ico:TIcon;
        IcoIndex:Integer;
     ...procedure TForm1.FormCreate(Sender:TObject);
    begin
      ico:=TIcon.Create;
      icoIndex:=0;
      Timer1.OnTimer(Timer1);
    end;procedure TForm1.Timer1Timer(Sender:TObject);
    begin
      if icoIndex:=0 then
        icoIndex:=1
      else 
        icoIndex:=0
      ImageList.GetIcon(icoIndex,Ico);
      Application.Icon:=ico;
    end;
      

  2.   

    同意楼上的、如果用TRAYICON,做法也一样
      

  3.   

    http://www.csdn.net/cnshare/soft/12/12349.shtm
      

  4.   

    调用Windows的Api函数不知道行不行,以前好像看到过
      

  5.   

    所有WINDOW程序到了最底层不就都是API的调用了吗?实现这类功能的控件当然也是调用API咯!不过这类帖子太多了,还是学会自己获取信息吧!