CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com
Results 1 to 4 of 4
  1. #1
    Join Date
    Jul 2007
    Posts
    2

    TabControl Tooltip

    In Windows Forms, how can I introduce a delay between when my mouse moves over the heading of a tab and when the tooltip gets displayed?

    Thanks,
    Mehul.

  2. #2
    Join Date
    Mar 2006
    Location
    Craiova, Romania
    Posts
    439

    Re: TabControl Tooltip

    Setting the autodelay does not work ?
    Code:
    this.toolTip1.AutomaticDelay = 1000; //nr o f milliseconds
    Bogdan

    If someone helped you then please Rate his post and mark the thread as Resolved
    Please improve your messages appearance by using tags [ code] Place your code here [ /code]

  3. #3
    Join Date
    Jul 2007
    Posts
    2

    Re: TabControl Tooltip

    when I add a tooltip to my form, in the designer i see an property called Tooltip on toolTip1. If I set that to 'abc'. then 'abc' is displayed over all my tabs when i hover over them. How do i show different values for the hover tip when i move from one tab heading to another?

    Thanks.

  4. #4
    Join Date
    Oct 2004
    Location
    Rocket City
    Posts
    220

    Re: TabControl Tooltip

    For each tabpage you set MyTabPage.ToolTipText.

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