Articles   Members Online:
-Article/Tip Search
-News Group Search over 21 Million news group articles.
-Delphi/Pascal
-CBuilder/C++
-C#Builder/C#
-JBuilder/Java
-Kylix
Member Area
-Home
-Account Center
-Top 10 NEW!!
-Submit Article/Tip
-Forums Upgraded!!
-My Articles
-Edit Information
-Login/Logout
-Become a Member
-Why sign up!
-Newsletter
-Chat Online!
-Indexes NEW!!
Employment
-Build your resume
-Find a job
-Post a job
-Resume Search
Contacts
-Contacts
-Feedbacks
-Link to us
-Privacy/Disclaimer
Embarcadero
Visit Embarcadero
Embarcadero Community
JEDI
Links
Flash your application icon on the taskbar. Turn on/off line numbers in source code. Switch to Orginial background IDE or DSP color Comment or reply to this aritlce/tip for discussion. Bookmark this article to my favorite article(s). Print this article
Flash your application icon 17-Mar-04
Category
System
Language
Delphi All Versions
Views
471
User Rating
No Votes
# Votes
0
Replies
1
Publisher:
Darley, F. Joe
Reference URL:
			1   
2   //this code will come in handy to give the user notice that your application needs 
3   //attention.
4   
5   procedure TForm1.Button1Click(Sender: TObject);
6   begin
7    timer1.Enabled:=true;
8   end;
9   
10  
11  procedure TForm1.Timer1Timer(Sender: TObject);
12  var
13    FL: TFlashWInfo;
14  begin
15    FL.cbSize := SizeOf(FW);
16    FL.hwnd := Application.Handle; //assigns the application handle to have windows 
17    //flash the icon
18    FL.dwFlags := FLASHW_ALL + FLASHW_TIMERNOFG;
19    FL.uCount := 1;
20    FL.dwTimeout := 0;
21    FlashWindowEx(FL);//execute flash
22  end;


			
Vote: How useful do you find this Article/Tip?
Bad Excellent
1 2 3 4 5 6 7 8 9 10

 

Advertisement
Share this page
Advertisement
Download from Google

Copyright © Mendozi Enterprises LLC