Einzelnen Beitrag anzeigen

MathiasSimmack
(Gast)

n/a Beiträge
 
#5

Re: Taskleiste - Buttonblinken

  Alt 18. Nov 2003, 19: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);
  Mit Zitat antworten Zitat