My program uses a notifyicon but if the icon isnt in the my documents folder it wont work
how can i get it to work where ever the program is installed
Jonathan
Code:
Private Sub Form1_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load
NotifyIcon1.Icon = New _
System.Drawing.Icon(System.Environment.GetFolderPath _
(System.Environment.SpecialFolder.Personal) _
& "/Icon.ico")
NotifyIcon1.Visible = True
NotifyIcon1.Text = "WHM & CP Launcher"
End Sub
Jonathan