Desktop Functions: Smart Device Functions:
|
Search Results for "FlashWindowEx" in [All]user32
static extern bool FlashWindowEx(ref FLASHWINFO pwfi);
public static bool FlashWindowEx(IntPtr hWnd)
return FlashWindowEx(ref fInfo);
public static bool FlashWindowEx(Form frm)
return FlashWindowEx(ref fInfo); Flash Window in Taskbar via Win32 FlashWindowEx: http://pietschsoft.com/post/2009/01/26/CSharp-Flash-Window-in-Taskbar-via-Win32-FlashWindowEx.aspx
Private Declare Function FlashWindowEx Lib "User32.dll" (ByRef fwInfo As FLASHWINFO) As Boolean
Return FlashWindowEx(fwi) |