Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • Home
  • SEARCH
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 899133
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 15, 20262026-05-15T15:10:02+00:00 2026-05-15T15:10:02+00:00

I am using the Tooltip class like this… where ctrl is a Picture ctrl.

  • 0

I am using the Tooltip class like this…

where ctrl is a Picture ctrl.

ToolTip oTooltip = new ToolTip();
oTooltip.SetToolTip(ctrl, “The algorithm has been completed successfully”);
oTooltip.ShowAlways = true;

When the form is loaded, teh tooltip is shown… it shows up some two or three time whenever i hover the mouse obver it but from the fourth hover it stops coming/sghowing.

is there anything that i need to set.?

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-15T15:10:03+00:00Added an answer on May 15, 2026 at 3:10 pm

    I had a similar issue not too long ago. To work around the problem, I subscribed to the control’s MouseEnter event and toggled between setting the Active property of the ToolTip from false to true. My code looked something like this:

    using System;
    using System.Windows.Forms;
    
    public Form1()
    {
        this.pictureBox1.MouseEnter += new EventHandler(pictureBox1_MouseEnter);
    
        this.ToolTip = new ToolTip();
        this.ToolTip.SetToolTip(this.pictureBox1, "The algorithm has been completed successfully.")
    }
    
    private ToolTip ToolTip
    {
        get;
        set;
    }
    
    private void pictureBox1_MouseEnter(object sender, EventArgs e)
    {
        this.ToolTip.Active = false;
        this.ToolTip.Active = true;
    }
    

    Hope that helps.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have been using Twitter's Bootstrap Tooltip plugin . This works perfectly fine except
I am inserting content to a div using jquery like: $('#divItem').append(<a href='abcd.aspx' class=toolTip target='_blank'>Go
i was using tooltip and it is working perfectly, but it seems like my
I am using a tooltip plugin called qTip2. I would like to be able
I've been trying awhile to implement this mootools tooltip sample on my site, the
I found this wonderfull tooltip called qTip2. Loving it so far but has gotten
I'm using Twitter bootstrap tooltips with javascript like the following: $('a[rel=tooltip]').tooltip(); My markup looks
I'm using a javascript tooltip provided by jqueryTOOLS to give tool tips within a
I'm using the JQuery tooltip plugin - http://docs.jquery.com/Plugins/Tooltip With the basic implementation: $(.tooltip).tooltip(); Instead
I am working on a small app and am using jQuery Tools Tooltip (

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.