how programatically a winform can blink

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

you can try something like this :

use a boucle ( something like this) :

for ( int i = 0; i < 100; i ++ )
{
this.Visible = -this.Visible
}

Bye.
 
Hi,

If a form is not visible, then how can it blink programatically.

Thank you for those who replies.

Bye
 
Hi,

Thank you for reply, but its not working.

Actual problem is to blink the winform on taskbar( not on desktop), just
msn chat window blink on arriving new message.

Wait for your next reply.

Bye.
 
Back
Top