Flashing Taskbar Button

  • Thread starter Thread starter German Garbuglia
  • Start date Start date
G

German Garbuglia

Does anyone know how to implement FlashWindow or FlashWindowEx API
Functions in C#? I need an example. I've no success implementing them.

Thanks, German Garbuglia.
 
[DllImport("user32.dll", EntryPoint="FlashWindow")]
public static extern bool FlashWindow(IntPtr hWnd, bool bInvert);

bool bRetVal = FlashWindow(this.Handle, true);
 
Back
Top