I am using vb.net ultimate 2013 and I have this notification icon that displays in the system's tray as follows and is put in a timer control.
Dim strC as String= frmHome.txtUserName.Text
frmHome.NotifyIcon1.BalloonTipTitle = "Lands Commission Messenger (" & frmHome.txtUserName.Text.Trim & ")"
frmHome.NotifyIcon1.BalloonTipText = "YOU HAVE " & strC & " FILE(S) / MAIL(S) WAITING FOR YOU TO RECEIVE"
frmHome.NotifyIcon1.ShowBalloonTip(10000)
frmHome.ShowInTaskbar = False
Now my problem is how do I integrate the above piece of code into a Windows Service so that when the system starts, the messages can continue to display.