RickS650
RickS650

Reputation: 23

VB.Net BalloonTipText appears as a black rectangle

I have a strange problem, I have created a test form FrmTest. Added a NotifyIcon and added the code shown:

Public Class FrmTest
    Private Sub FrmTest_Load(sender As Object, e As EventArgs) Handles MyBase.Load
    End Sub

    Sub FormTest_Click(ByVal sender As Object, ByVal e As EventArgs) Handles Me.Click
        Call SetBalloonTip()
        NotifyIcon1.Visible = True
        NotifyIcon1.ShowBalloonTip(30000)    
    End Sub

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

When I click to make the balloon appear I get this:

Balloon Pic

I must be doing something obviously wrong but I am stumped!

Upvotes: 1

Views: 145

Answers (1)

yossef douieb
yossef douieb

Reputation: 156

There is nothing to say you did well... That is what a balloon Tip looks like on Windows 10. Best of luck.

Upvotes: 1

Related Questions