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