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-ID: 59321

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

Ausgedruckt am: 19.11.2024 um 02:11 Uhr

BartSimpson
BartSimpson 20.05.2007 um 10:31:03 Uhr
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.
47229
47229 21.05.2007 um 13:50:56 Uhr
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