Results 1 to 4 of 4

Thread: desable that....

  1. #1

    Thread Starter
    Lively Member
    Join Date
    Oct 2002
    Posts
    70

    desable that....

    I want desalbe app blinking in task bar


    Any suggestion ?


    Thanks
    Attached Images Attached Images  

  2. #2
    Banned Michael_Kamen's Avatar
    Join Date
    May 2001
    Location
    The Netherlands
    Posts
    1,180
    Not sure if you can.

    Can you tell why you want to disable it?

  3. #3

    Thread Starter
    Lively Member
    Join Date
    Oct 2002
    Posts
    70
    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!

  4. #4
    Super Moderator manavo11's Avatar
    Join Date
    Nov 2002
    Location
    Around the corner from si_the_geek
    Posts
    7,171
    Maybe the flash window API?

    VB Code:
    1. Option Explicit
    2.  
    3. Private Declare Function FlashWindow Lib "user32" (ByVal hwnd As Long, ByVal bInvert As Long) As Long
    4.  
    5. Private Sub Form_Load()
    6.     Timer1.Interval = 1000
    7.     Timer1.Enabled = True
    8. End Sub
    9.  
    10. Private Sub Timer1_Timer()
    11.     FlashWindow Me.hwnd, 1
    12. End Sub

    If you get the handle of the window and you do : FlashWindow hwnd, 0 it should stop it...


    Has someone helped you? Then you can Rate their helpful post.

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  



Click Here to Expand Forum to Full Width