Create Form Flash
HOW TO CREATE CODE FORM FLASH IN VISUAL BASIC PROGRAME ?
Windows API/Global Declarations:
Private Declare Function FlashWindow Lib "user32" Alias "FlashWindow" (ByVal hWnd as long, ByVal bInvert as long) as long
Private Sub timer1_timer()
Dim nReturnValue as Integer
nReturnValue = FlashWindow(form1.hWnd, true)
End Sub
Windows API/Global Declarations:
Private Declare Function FlashWindow Lib "user32" Alias "FlashWindow" (ByVal hWnd as long, ByVal bInvert as long) as long
Private Sub timer1_timer()
Dim nReturnValue as Integer
nReturnValue = FlashWindow(form1.hWnd, true)
End Sub