Dark Shadow Posted July 22, 2003 Posted July 22, 2003 How put a tooltips over a systemtray icon. Thx for your help!!! Quote
jorge Posted July 22, 2003 Posted July 22, 2003 Enter the tooltip in the text rpoperty of the trayicon and your set. If you still can't find ask and i'll make a example Quote Jorge - http://www.blackdot.be/?page=apache.htm
Leaders dynamic_sysop Posted July 22, 2003 Leaders Posted July 22, 2003 Private WithEvents nIcon As NotifyIcon Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click nIcon = New NotifyIcon() With nIcon .Icon = Me.Icon .Visible = True .Text = "testing!" '/// the tooltip. End With End Sub Private Sub Form1_Closing(ByVal sender As Object, ByVal e As System.ComponentModel.CancelEventArgs) Handles MyBase.Closing If Not nIcon Is Nothing Then nIcon.Icon = Nothing '/// make sure we remove the icon from the tray. nIcon.Dispose() nIcon = Nothing End If End Sub Private Sub nIcon_Click(ByVal sender As Object, ByVal e As System.EventArgs) Handles nIcon.Click MessageBox.Show("BOO!") End Sub that should help :) Quote
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.