CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com
Results 1 to 4 of 4
  1. #1
    Join Date
    Jun 2001
    Location
    Wuerzburg, Germany
    Posts
    90

    Formated Tooltiptext

    Hi,

    I want to create a formated tooltip like that from Trillian:

    Thanks for help

    Michael
    Attached Images Attached Images

  2. #2
    Join Date
    Apr 1999
    Posts
    3,585

    Re: Formated Tooltiptext

    From the looks of it, I would guess that it's not a true tooltip, but, rather, some sort of window (CWnd) structure. You can construct the same sort of thing using a modeless dialog.
    Gort...Klaatu, Barada Nikto!

  3. #3
    Join Date
    Nov 2003
    Location
    Belgium
    Posts
    8,150

    Re: Formated Tooltiptext

    There are some articles on www.codeguru.com about such tooltips.
    See: http://www.codeguru.com/Cpp/controls/controls/
    Marc Gregoire - NuonSoft (http://www.nuonsoft.com)
    My Blog
    Wallpaper Cycler 3.5.0.97

    Author of Professional C++, 4th Edition by Wiley/Wrox (includes C++17 features)
    ISBN: 978-1-119-42130-6
    [ http://www.facebook.com/professionalcpp ]

  4. #4
    Join Date
    Nov 2002
    Location
    California
    Posts
    4,556

    Re: Formated Tooltiptext

    See "RichText Tool-tip control" By Paul S. Vickery at http://www.codeproject.com/miscctrl/RichToolTipCtrl.asp

    According to the article, it's a drop-in replacement for MFC's CToolTipCtrl control, with the added benefit of being able to specify rich-text and images as the tool-tip text.

    Mike

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