Group: Error Handling - Library: user32
How to make the caption of a VFP application flashing in the Windows task bar
BOOL FlashWindow(
HWND hWnd, // handle to window
BOOL bInvert // flash status
);
DECLARE INTEGER FlashWindow IN user32;
INTEGER hWnd,;
INTEGER bInvert
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.
The return value specifies the window"s state before the call to the FlashWindow function.