Sub Simple_Notification
Dim n As NB6
dim notif as Notification
n.Initialize("default", Application.LabelName, "DEFAULT").AutoCancel(True).SmallIcon(smiley)
notif = n.Build("Title", "Content", "tag1", Me) 'It will be Main (or any other activity) instead of Me if called from a service.
notif.Notify(4)
'notif.Cancel(4)
End Sub
Sub Simple_Notification
Dim n As NB6
dim notif as Notification
n.Initialize("default", Application.LabelName, "DEFAULT").AutoCancel(True).SmallIcon(smiley)
notif = n.Build("Title", "Content", "tag1", Me) 'It will be Main (or any other activity) instead of Me if called from a service.
notif.Notify(4)
'notif.Cancel(4)
End Sub