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

    How to hide the menu bar ?

    Hi,

    My question is simple, but I would to do to it with an easy way !!
    How to hide the menu bar ?
    And, how to show it after ?

    Thanks in advance.
    Frédéric Naudeau.


  2. #2
    Join Date
    Apr 1999
    Posts
    90

    Re: How to hide the menu bar ?

    void CMainFrame::OnViewImgdataToolbar()
    {
    BOOL bIsVisible = (m_wndImgDataToolBar.GetStyle() & WS_VISIBLE);
    ShowControlBar(&m_wndImgDataToolBar, !bIsVisible, FALSE);
    }



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