Connecting Tech Pros Worldwide Help | Site Map

Flashing Taskbar Button

German Garbuglia
Guest
 
Posts: n/a
#1: Nov 15 '05
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.
Mr.Tickle
Guest
 
Posts: n/a
#2: Nov 15 '05

re: Flashing Taskbar Button


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

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


--




"German Garbuglia" <sidtgeg@siderca.com> wrote in message
news:1b0d690f.0309251029.56e9a4f7@posting.google.c om...[color=blue]
> 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.[/color]


Closed Thread