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

Thread: Hiding Toolbars

  1. #1
    Guest

    Hiding Toolbars

    Can anyone tell me how I can hide two toolbars until the new file button has been pressed.

    Thanks


  2. #2
    Join Date
    Apr 1999
    Posts
    90

    Re: Hiding Toolbars

    The command to show/hide a control bar is:

    BOOL bShow = TRUE; // or FALSE, whatever the case may be
    ShowControlBar(&m_wndAppToolBar, bShow, 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