Flashing Title Bar
Make's the title bar flash.
Original Author: luke20au
Code
Private Declare Function FlashWindow Lib "user32" (ByVal hWnd As Long, ByVal bInvert As Long) As Long
Private Sub Form_Load()
Dim lngReturnValue As Long
lngReturnValue = FlashWindow(Form1.hWnd, True)
End Sub
Loading Comments ...
Comments
No comments have been added for this post.
You must be logged in to make a comment.