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

    StatusBar - Height

    Hi All,

    How to change the height of the CStatusBar control in the Mainframe window.

    -prabha



  2. #2
    Join Date
    Apr 1999
    Posts
    20

    Re: StatusBar - Height

    You should be able to something like this:

    int iMyPixelHeight = 50;

    CStatusBarCtrl &barCtrl = m_wndStatus.GetStatusBarCtrl();

    barCtrl.SetMinHeight(iMyPixelHeight);



  3. #3
    Join Date
    Jun 2005
    Posts
    3

    Question Re: StatusBar - Height

    int iMyPixelHeight = 50;

    CStatusBarCtrl &barCtrl = m_wndStatus.GetStatusBarCtrl();

    barCtrl.SetMinHeight(iMyPixelHeight);


    Also dose not work!!!

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