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

    Tooltip for status bar panes



    Assume that I have created my own panes for status bar. How can I display tooltips for status bar panes.


    Thanks


    Dhiren

  2. #2
    Join Date
    Apr 1999
    Posts
    20

    Re: Tooltip for status bar panes



    Assuming you created the CStatusBar with the SBT_TOOLTIPS style bit:


    You should be able to call GetStatusBarCtrl() to get a reference to the underlying CStatusBarCtrl object. Then, call CStatusBarCtrl::SetTipText() for each pane you have.

  3. #3
    Join Date
    May 1999
    Posts
    36

    Re: Tooltip for status bar panes



    Hi,


    Is this possible in VC++ 5.x?


    Harvey

  4. #4
    Join Date
    Apr 1999
    Posts
    20

    Re: Tooltip for status bar panes



    It should be. Check the help for CStatusBarCtrl and if it shows up then it works.

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