(Gast)
n/a Beiträge
|
Re: Taskleiste - Buttonblinken
18. Nov 2003, 20:41
Eben nicht.
Zitat von PSDK:
The FlashWindow function flashes the window only once; for repeated flashing, the application should create a system timer.
For an example, see Notifying the User of Errors:
Code:
FlashWindow(hwnd, TRUE); // invert the title bar
Sleep(500); // wait a bit
FlashWindow(hwnd, TRUE); // invert again
// Play the system exclamation sound.
MessageBeep(MB_ICONEXCLAMATION);
|
|
Zitat
|