|
-
Sep 20th, 2006, 04:43 AM
#1
Thread Starter
New Member
Mouseover buttons and tooltips
Hello, my first post here.
I have a problem with tooltips. I have mouse over function in my application buttons (picture boxes) and because of that the tooltips don't work. This is the code that I am using and which seems to block the tooltips:
Private Sub Picture2_MouseMove(Button As Integer, Shift As Integer, X As Single, Y As Single)
If (X < 0 Or X > Picture2.Width) Or (Y < 0 Or Y > Picture2.Height) Then
Call ReleaseCapture
Picture2.Picture = LoadPicture(App.Path & "\Pics\new.gif")
ElseIf Picture2.hWnd <> GetCapture Then
Call SetCapture(Picture2.hWnd)
Picture2.Picture = LoadPicture(App.Path & "\Pics\new_over.gif")
End If
End Sub
I have tried to use also the xp style balloon tooltips but with no luck... any succestions? Thanks
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|