VBcoders Guest



Don't have an account yet? Register
 


Forgot Password?



Blinking Title Bar

by oXidizer (1 Submission)
Category: Miscellaneous
Compatability: Visual Basic 3.0
Difficulty: Unknown Difficulty
Date Added: Wed 3rd February 2021
Rating: (4 Votes)

Want Attention? Let the title bar of your program blink!

API Declarations

Rate Blinking Title Bar

'***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

Download this snippet    Add to My Saved Code

Blinking Title Bar Comments

No comments have been posted about Blinking Title Bar. Why not be the first to post a comment about Blinking Title Bar.

Post your comment

Subject:
Message:
0/1000 characters