Feedback

VB - NotifyIcon Balloon

Veröffentlicht von am 3/22/2015
(0 Bewertungen)
Erstellt einen Balloon für das definierte NotifyIcon
    Sub Balloon(ByVal NotifyIcon As NotifyIcon, ByVal Text As String, ByVal Title As String, ByVal Style As ToolTipIcon, ByVal Time As Integer)
        NotifyIcon.BalloonTipIcon = Style
        NotifyIcon.BalloonTipText = Text
        NotifyIcon.BalloonTipTitle = Title

        NotifyIcon.ShowBalloonTip(Time)
    End Sub
Abgelegt unter Balloon, NotifyIcon.

Kommentare zum Snippet

 

Logge dich ein, um hier zu kommentieren!