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);
 

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