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.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top