I want desalbe app blinking in task bar
Any suggestion ?
Thanks
Printable View
I want desalbe app blinking in task bar
Any suggestion ?
Thanks
Not sure if you can.
Can you tell why you want to disable it?
Hi Michael Kamen
I open From My App a text file in UltraEdit and jump at a particular position and UltraEdit contantly Blinking
And I want desable this
Thanks!
Maybe the flash window API?
VB Code:
Option Explicit Private Declare Function FlashWindow Lib "user32" (ByVal hwnd As Long, ByVal bInvert As Long) As Long Private Sub Form_Load() Timer1.Interval = 1000 Timer1.Enabled = True End Sub Private Sub Timer1_Timer() FlashWindow Me.hwnd, 1 End Sub
If you get the handle of the window and you do : FlashWindow hwnd, 0 it should stop it...