/// Faire clignoter une application dans la barre de tache // Le clignotement se poursuit tant que l'utilisateur n'a pas cliqué sur le bouton // PROCEDURE FlashWindowEx() _FLASHWINFO est une structure cbSize est un entier sans signe hWnd est un entier // A handle to the window to be flashed. dwFlags est un entier // The flash status uCount est un entier sans signe // The number of times to flash the window. dwTimeout est un entier // The rate at which the window is to be flashed, in milliseconds. 0 pour défaut FIN // A mettre normalement en constantes FLASHW_ALL est un entier = 0x00000003 // Flash both the window caption and taskbar button FLASHW_CAPTION est un entier = 0x00000001 // Flash the window caption FLASHW_TIMER est un entier = 0x00000004 // Flash continuously, until the FLASHW_STOP flag is set FLASHW_TIMERNOFG est un entier = 0x0000000C // Flash continuously until the window comes to the foreground FLASHW_TRAY est un entier = 0x00000002 // Flash the taskbar button pfwi est un _FLASHWINFO pfwi:cbSize=Dimension(pfwi) pfwi:dwFlags=FLASHW_ALL+FLASHW_TIMERNOFG pfwi:dwTimeout=0 // uses the default cursor blink rate pfwi:hWnd=Handle(FenEnExécution()) pfwi:uCount = 100 // Flashes the specified window. It does not change the active state of the window. // // BOOL FlashWindowEx( // PFLASHWINFO pfwi // ); AppelDLL32("User32","FlashWindowEx",&pfwi)