Make minimised window flash in task bar..

  • Thread starter Thread starter SPG
  • Start date Start date
S

SPG

Hi,

I need to make a minimised window flash in the task bar, without using the
FlashWindow() win32 api call.
Any way to do this?

I have tried myForm.Activate(); but that is no good with XP.

Cheers,

Steve
 
SPG,

The flash semantics are not exposed natively through .NET. The only way
to do it is through a call to FlashWindow. Is there a reason why you can't
use the API?
 
From a System.Windows.Forms.Form



2 methods Flash() and Flash(...)



Brett
 
Back
Top