CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com
Results 1 to 4 of 4

Threaded View

  1. #1
    Join Date
    May 2013
    Posts
    5

    Showing a BalloonTip on a NotifyIcon shows up after 10 seconds

    I have a NotifyIcon on my MainForm which works fine whenever I call the showBalloonTip() method on it. The BalloonTip shows immediately.

    But when I open my SecondForm and use a reference of my MainForm to access the NotifyIcon it shows the BalloonTip after 10 seconds..

    Code:
    reference.notifyIcon1.BalloonTipTitle = "Title";
    reference.notifyIcon1.BalloonTipText = "Text";
    reference.notifyIcon1.ShowBalloonTip(5000);
    EDIT:
    Whenever I change my FormBorderStyle to something else than "None" the delay is gone..

    TL;DR
    FormBorderStyle.None seems the issue..
    Last edited by jeffrey1994; May 25th, 2013 at 11:13 AM.

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  





Click Here to Expand Forum to Full Width

Featured