Hi, what it is I've got balloon tips working after a lot of trial and error lol and it comes up when the application is minimized to the tray notifying the user that it has been minimized. What I want to do is add a little functionality to the balloon tip, for example like Windows Live Mail application, it has on the balloon tip.
"Click here to stop showing this message" or something or other in the balloon tip, I was wondering is there any way to do that with Visual Basic, I've got the Registry key already in place to capture it if it is clicked but I don't know how to pull if the balloon was clicked or not.
This is the code I'm using to pull up the balloon tip
-
If Me.WindowState = 1 Then
-
With t
-
.uTimeout = 1000
-
.dwInfoFlags = vbInformation
-
.szInfoTitle = MIN_MSG_TITLE & Chr$(0)
-
.szInfo = MIN_MSG_STRNG & Chr$(0)
-
End With
-
-
' ok, write it to the system tray icon
-
If QueryValue(REGKEY, "ShowBalloon") = "1" Then
-
Shell_NotifyIcon NIM_MODIFY, t
-
End If
-
If anyone can offer any advice on the matter would be much appreciated.
Kind Regards
Devon