Want Attention? Let the title bar of your program blink!
Original Author: oXidizer
API Declarations
Code
'***Add a timer (timer1) to your form... paste the code below to the global declarations!
'***Set the timer interval to 250
Private Declare Function FlashWindow Lib "user32" (ByVal hwnd As Long, ByVal bInvert As Long) As Long
Private Sub Timer1_Timer()
Call FlashWindow(Form1.hwnd, True)
End Sub