A Flashing Form

By | 2002-06-01

This code causes the form’s TitleBar and the form’s TaskBar Window to Flash.

Original Author: Tomer Cohen

Assumptions

Create a Timer control and name it – Timer1

API Declarations

Private Declare Function FlashWindow Lib “user32” Alias “FlashWindow” (ByVal hwnd As Long, ByVal bInvert As Long) As Long

Code

Private Sub Form_Load()
Timer1.Interval = 300 'Change value depending on the speed of flahing.
End Sub
Private Sub Timer1_Timer()
FlashWindow hwnd, 1
End Sub

Author: dwirch

Derek Wirch is a seasoned IT professional with an impressive career dating back to 1986. He brings a wealth of knowledge and hands-on experience that is invaluable to those embarking on their journey in the tech industry.

Leave a Reply

Your email address will not be published. Required fields are marked *

This site uses Akismet to reduce spam. Learn how your comment data is processed.