Is it at all possible to stop the popup text with the value from being displayed when you use the slider?
Cheers
-adehh
Printable View
Is it at all possible to stop the popup text with the value from being displayed when you use the slider?
Cheers
-adehh
You can't through the VB control but you can using the Windows API.
VB Code:
Private Const WM_USER = &H400 Private Const TBM_SETTOOLTIPS = (WM_USER + 29) Private Declare Function SendMessage Lib "user32" Alias "SendMessageA" _ (ByVal hWnd As Long, _ ByVal wMsg As Long, _ ByVal wParam As Long, _ lParam As Any) As Long Private Sub Form_Load() Call SendMessage(Slider1.hWnd, TBM_SETTOOLTIPS, 0&, ByVal 0&) End Sub
Ahh, nice one mate, cheers. :)
-adehh