Results 1 to 6 of 6

Thread: Sliders and tooltips {RESOLVED}

  1. #1

    Thread Starter
    vbuggy krtxmrtz's Avatar
    Join Date
    May 2002
    Location
    In a probability cloud
    Posts
    5,573

    Sliders and tooltips {RESOLVED}

    Do slider controls always display the tooltips or is there a way to avoid it? I have tried sertting the tooltiptext to "" but the slider.value is still shown when I click/drag on it.
    Last edited by krtxmrtz; Jun 26th, 2003 at 08:37 AM.

  2. #2
    Super Moderator manavo11's Avatar
    Join Date
    Nov 2002
    Location
    Around the corner from si_the_geek
    Posts
    7,171
    From here :
    VB Code:
    1. Private Const WM_USER = &H400
    2. Private Const TBM_SETTOOLTIPS = (WM_USER + 29)
    3.  
    4. Private Declare Function SendMessage Lib "user32" Alias "SendMessageA" _
    5.     (ByVal hWnd As Long, _
    6.      ByVal wMsg As Long, _
    7.      ByVal wParam As Long, _
    8.      lParam As Any) As Long
    9.  
    10. Private Sub Form_Load()
    11.      Call SendMessage(Slider1.hWnd, TBM_SETTOOLTIPS, 0&, ByVal 0&)
    12. End Sub


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

  3. #3

    Thread Starter
    vbuggy krtxmrtz's Avatar
    Join Date
    May 2002
    Location
    In a probability cloud
    Posts
    5,573
    Efharisto manavo11 !

  4. #4
    Super Moderator manavo11's Avatar
    Join Date
    Nov 2002
    Location
    Around the corner from si_the_geek
    Posts
    7,171
    Parakalo!


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

  5. #5
    Hyperactive Member FATBOYPEE's Avatar
    Join Date
    May 2001
    Location
    Charleville (Ireland) Still. ANYONE GOT A JOB I CAN HAVE ? GIZA JOB. I CAN DO THAT....
    Posts
    463
    Originally posted by manavo11
    Parakalo!

    parakalo = ask, beg, implore, petition, pray, request, solicit , urge, woo

    Best Bar.....

  6. #6
    Super Moderator manavo11's Avatar
    Join Date
    Nov 2002
    Location
    Around the corner from si_the_geek
    Posts
    7,171
    Well, it also means "you're welcome"... That was the meaning I intended


    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