Skip to content

Latest commit

 

History

History
46 lines (32 loc) · 1.03 KB

FlashWindow.md

File metadata and controls

46 lines (32 loc) · 1.03 KB

Home

Function name : FlashWindow

Group: Error Handling - Library: user32


Flashes the specified window one time. It does not change the active state of the window


Code examples:

How to make the caption of a VFP application flashing in the Windows task bar

Declaration:

BOOL FlashWindow(
  HWND hWnd,     // handle to window
  BOOL bInvert   // flash status
);  

FoxPro declaration:

DECLARE INTEGER FlashWindow IN user32;
	INTEGER hWnd,;
	INTEGER bInvert  

Parameters:

hWnd [in] Handle to the window to be flashed. The window can be either open or minimized.

bInvert [in] Specifies whether the window is to be flashed or returned to its original state.


Return value:

The return value specifies the window"s state before the call to the FlashWindow function.