michael1709
Goto Top

Meldungen über Windows XP Ballontips (Sprechblase)

Hallo,

ich suche eine Möglichkeit, Meldungen, bzw. Mitteilungen über die Windows XP Sprechblase des Systemtray auszugeben.
Am besten mit Bordmitteln. Möglicherweise ist ansonsten jemandem ein Tool bekannt, das, ähnlich wie MsgBox, übergebene Parameter an die Sprechblasenfunktion von XP weitergibt.

Danke schon mal an Alle

Gruß
-Michael

Content-Key: 59321

Url: https://administrator.de/contentid/59321

Printed on: April 19, 2024 at 20:04 o'clock

Member: BartSimpson
BartSimpson May 20, 2007 at 08:31:03 (UTC)
Goto Top
Wenn du dich mit C++ auskennst, dann kannst du entweder Qt nehmen, oder du schaust mal in die Doku des Windows SDK's.
Mitglied: 47229
47229 May 21, 2007 at 11:50:56 (UTC)
Goto Top
unter .NET 2.0 gibts die methode notifyicon.showballoontip. damit kann man recht einfach machen,was du willst (VB Code):


Private Sub SetBalloonTip()
notifyIcon1.Icon = SystemIcons.Exclamation
notifyIcon1.BalloonTipTitle = "Balloon Tip Title"
notifyIcon1.BalloonTipText = "Balloon Tip Text."
notifyIcon1.BalloonTipIcon = ToolTipIcon.Error

End Sub

Sub Form1_Click(ByVal sender As Object, ByVal e As EventArgs) _
Handles Me.Click
notifyIcon1.Visible = True
notifyIcon1.ShowBalloonTip(30)

End Sub