Code to View/Hide Status Bar in SDI and MDI Applications New Jersey

Here's a little handler for the OnViewStatusBar message handler to change the "View/Hide Status Bar" menu option so that the application (main) window changes its height according to the size of the visible client area.

Local Companies

Power Vision
(973) 623-8000
24 Commerce St
Newark, NJ
iCIMS
800-889-4422
1301 State Route 36
Hazlet, NJ
Mantra Information Services
973-270-0995
10 North Park Place, Suite 210
Morristown, NJ
TAKE Enterprise Services, Inc.
609-275-8384
502 Carnegie Center
Princeton, NJ
Language Success
(973) 648-0236
1 Newark Airport
Newark, NJ
Shelko Consulting LLC
201-478-7170
214 State St
Hackensack, NJ
Shelko Consulting LLC
201-478-7170
214 State Street
Hackensack, NJ
Accession Technology Accounting & CRM Software Consulting
888-808-1117
PO Box 400
Ridgewood, NJ
Bon Trade Solutions
(973) 623-0093
744 Broad St
Newark, NJ
Popkin Software & Systems Inc
(212) 269-3062
55 Broadway
Newark, NJ

provided by: 
Originally published at Internet.com


Ever wanted to change the "View/Hide Status Bar" menu option so that the application (main) window changes its height accordingly preserving the size of the visible client area?

Here's a little handler for the OnViewStatusBar message handler to perform this task. Versions for MFC or Non-MFC available. // // OnViewStatusBar handler // // increase or decrease app window height to adapt to // visible or invisible status bar // void CMainFrame::OnViewStatusBar() // MFC version // by Volker Bartheld { CControlBar* pBar = GetControlBar(AFX_IDW_STATUS_BAR); if (pBar != NULL) { RECT AppWinRect, BarRect; GetWindowRect(&AppWinRect); pBar->GetWindowRect(&BarRect); int iBarHeight = BarRect.bottom - BarRect.top; BOOL bShow = (pBar->GetStyle() & WS_VISIBLE) == 0; ShowControlBar(pBar, bShow, FALSE); if (bShow) { // ... increase frame SetWindowPos(&CWnd::wndNoTopMost, AppWinRect.top, AppWinRect.left, AppWinRect.right-AppWinRect.left, AppWinRect.bottom- AppWinRect.top+iBarHeight, SWP_NOMOVE); } else { // ... decrease frame SetWindowPos(&CWnd::wndNoTopMost, AppWinRect.top, AppWinRect.left, AppWinRect.right-AppWinRect.left, AppWinRect.bottom-AppWinRect.top- iBarHeight, SWP_NOMOVE); } } } void CMainFrame::OnViewStatusBar() // non-MFC-version // by Alexander Sailer { // MFC StatusbarHandler aufrufen OnBarCheck(ID_VIEW_STATUS_BAR); CControlBar* pBar = NULL; BOOL bVisible(false); RECT AppWinRect, BarRect; int iBarHeight(0); // get ptr to status bar pBar = GetControlBar(ID_VIEW_STATUS_BAR); ASSERT(pBar); // Abme_ungen holen GetWindowRect(&AppWinRect); pBar->GetWindowRect(&BarRect); iBarHeight = BarRect.bottom - BarRect.top; // Abfrage ob Bar sichtbar ist bVisible = pBar->IsVisible(); if (bVisible)// ... increase frame { SetWindowPos(&CWnd::wndNoTopMost, AppWinRect.top, AppWinRect.left, AppWinRect.right-AppWinRect.left, AppWinRect.bottom-AppWinRect.top+iBarHeight, SWP_NOMOVE); } else // ... decrease frame { SetWindowPos(&CWnd::wndNoTopMost, AppWinRect.top, AppWinRect.left, AppWinRect.right-AppWinRect.left, AppWinRect.bottom-AppWinRect.top-iBarHeight, SWP_NOMOVE); } }

Downloads

Download source - 1 Kb

Author: Volker Bartheld

Read article at Internet.com site

Featured Local Company

Power Vision

(973) 623-8000
24 Commerce St
Newark, NJ

Related Articles
Regional Articles
- Code to View/Hide Status Bar in SDI and MDI Applications Absecon NJ
- Code to View/Hide Status Bar in SDI and MDI Applications Asbury Park NJ
- Code to View/Hide Status Bar in SDI and MDI Applications Atlantic City NJ
- Code to View/Hide Status Bar in SDI and MDI Applications Barnegat NJ
- Code to View/Hide Status Bar in SDI and MDI Applications Basking Ridge NJ
- Code to View/Hide Status Bar in SDI and MDI Applications Bayonne NJ
- Code to View/Hide Status Bar in SDI and MDI Applications Bayville NJ
- Code to View/Hide Status Bar in SDI and MDI Applications Belle Mead NJ
- Code to View/Hide Status Bar in SDI and MDI Applications Belleville NJ
- Code to View/Hide Status Bar in SDI and MDI Applications Belmar NJ
- Code to View/Hide Status Bar in SDI and MDI Applications Bergenfield NJ
- Code to View/Hide Status Bar in SDI and MDI Applications Blackwood NJ
- Code to View/Hide Status Bar in SDI and MDI Applications Bloomfield NJ
- Code to View/Hide Status Bar in SDI and MDI Applications Boonton NJ
- Code to View/Hide Status Bar in SDI and MDI Applications Bordentown NJ
- Code to View/Hide Status Bar in SDI and MDI Applications Brick NJ
- Code to View/Hide Status Bar in SDI and MDI Applications Bridgeton NJ
- Code to View/Hide Status Bar in SDI and MDI Applications Bridgewater NJ
- Code to View/Hide Status Bar in SDI and MDI Applications Browns Mills NJ
- Code to View/Hide Status Bar in SDI and MDI Applications Burlington NJ
- Code to View/Hide Status Bar in SDI and MDI Applications Caldwell NJ
- Code to View/Hide Status Bar in SDI and MDI Applications Camden NJ
- Code to View/Hide Status Bar in SDI and MDI Applications Cape May Court House NJ
- Code to View/Hide Status Bar in SDI and MDI Applications Cape May NJ
- Code to View/Hide Status Bar in SDI and MDI Applications Carteret NJ
- Code to View/Hide Status Bar in SDI and MDI Applications Cherry Hill NJ
- Code to View/Hide Status Bar in SDI and MDI Applications Clark NJ
- Code to View/Hide Status Bar in SDI and MDI Applications Clementon NJ
- Code to View/Hide Status Bar in SDI and MDI Applications Cliffside Park NJ
- Code to View/Hide Status Bar in SDI and MDI Applications Clifton NJ
- Code to View/Hide Status Bar in SDI and MDI Applications Collingswood NJ
- Code to View/Hide Status Bar in SDI and MDI Applications Colonia NJ
- Code to View/Hide Status Bar in SDI and MDI Applications Cranford NJ
- Code to View/Hide Status Bar in SDI and MDI Applications Denville NJ
- Code to View/Hide Status Bar in SDI and MDI Applications Deptford NJ
- Code to View/Hide Status Bar in SDI and MDI Applications Dumont NJ
- Code to View/Hide Status Bar in SDI and MDI Applications East Brunswick NJ
- Code to View/Hide Status Bar in SDI and MDI Applications East Orange NJ
- Code to View/Hide Status Bar in SDI and MDI Applications Eatontown NJ
- Code to View/Hide Status Bar in SDI and MDI Applications Edison NJ
- Code to View/Hide Status Bar in SDI and MDI Applications Egg Harbor Township NJ
- Code to View/Hide Status Bar in SDI and MDI Applications Elizabeth NJ
- Code to View/Hide Status Bar in SDI and MDI Applications Englewood NJ
- Code to View/Hide Status Bar in SDI and MDI Applications Englishtown NJ
- Code to View/Hide Status Bar in SDI and MDI Applications Ewing NJ
- Code to View/Hide Status Bar in SDI and MDI Applications Fair Lawn NJ
- Code to View/Hide Status Bar in SDI and MDI Applications Flemington NJ
- Code to View/Hide Status Bar in SDI and MDI Applications Forked River NJ
- Code to View/Hide Status Bar in SDI and MDI Applications Fort Lee NJ
- Code to View/Hide Status Bar in SDI and MDI Applications Freehold NJ
- Code to View/Hide Status Bar in SDI and MDI Applications Garfield NJ
- Code to View/Hide Status Bar in SDI and MDI Applications Glassboro NJ
- Code to View/Hide Status Bar in SDI and MDI Applications Hackensack NJ
- Code to View/Hide Status Bar in SDI and MDI Applications Hackettstown NJ
- Code to View/Hide Status Bar in SDI and MDI Applications Haddon Township NJ
- Code to View/Hide Status Bar in SDI and MDI Applications Haddonfield NJ
- Code to View/Hide Status Bar in SDI and MDI Applications Haledon NJ
- Code to View/Hide Status Bar in SDI and MDI Applications Hammonton NJ
- Code to View/Hide Status Bar in SDI and MDI Applications Hazlet NJ
- Code to View/Hide Status Bar in SDI and MDI Applications Hightstown NJ
- Code to View/Hide Status Bar in SDI and MDI Applications Hillside NJ
- Code to View/Hide Status Bar in SDI and MDI Applications Hoboken NJ
- Code to View/Hide Status Bar in SDI and MDI Applications Holmdel NJ
- Code to View/Hide Status Bar in SDI and MDI Applications Howell NJ
- Code to View/Hide Status Bar in SDI and MDI Applications Irvington NJ
- Code to View/Hide Status Bar in SDI and MDI Applications Iselin NJ
- Code to View/Hide Status Bar in SDI and MDI Applications Jackson NJ
- Code to View/Hide Status Bar in SDI and MDI Applications Jersey City NJ
- Code to View/Hide Status Bar in SDI and MDI Applications Kearny NJ
- Code to View/Hide Status Bar in SDI and MDI Applications Keyport NJ
- Code to View/Hide Status Bar in SDI and MDI Applications Lakehurst NJ
- Code to View/Hide Status Bar in SDI and MDI Applications Lakewood NJ
- Code to View/Hide Status Bar in SDI and MDI Applications Linden NJ
- Code to View/Hide Status Bar in SDI and MDI Applications Livingston NJ
- Code to View/Hide Status Bar in SDI and MDI Applications Long Branch NJ
- Code to View/Hide Status Bar in SDI and MDI Applications Lyndhurst NJ
- Code to View/Hide Status Bar in SDI and MDI Applications Madison NJ
- Code to View/Hide Status Bar in SDI and MDI Applications Mahwah NJ
- Code to View/Hide Status Bar in SDI and MDI Applications Manahawkin NJ
- Code to View/Hide Status Bar in SDI and MDI Applications Manchester Township NJ
- Code to View/Hide Status Bar in SDI and MDI Applications Maple Shade NJ
- Code to View/Hide Status Bar in SDI and MDI Applications Maplewood NJ
- Code to View/Hide Status Bar in SDI and MDI Applications Marlboro NJ
- Code to View/Hide Status Bar in SDI and MDI Applications Marlton NJ
- Code to View/Hide Status Bar in SDI and MDI Applications Matawan NJ
- Code to View/Hide Status Bar in SDI and MDI Applications Mays Landing NJ
- Code to View/Hide Status Bar in SDI and MDI Applications Medford NJ
- Code to View/Hide Status Bar in SDI and MDI Applications Merchantville NJ
- Code to View/Hide Status Bar in SDI and MDI Applications Metuchen NJ
- Code to View/Hide Status Bar in SDI and MDI Applications Middletown NJ
- Code to View/Hide Status Bar in SDI and MDI Applications Millville NJ
- Code to View/Hide Status Bar in SDI and MDI Applications Monroe Township NJ
- Code to View/Hide Status Bar in SDI and MDI Applications Montclair NJ
- Code to View/Hide Status Bar in SDI and MDI Applications Moorestown NJ
- Code to View/Hide Status Bar in SDI and MDI Applications Morganville NJ
- Code to View/Hide Status Bar in SDI and MDI Applications Morris Plains NJ
- Code to View/Hide Status Bar in SDI and MDI Applications Morristown NJ
- Code to View/Hide Status Bar in SDI and MDI Applications Mount Holly NJ
- Code to View/Hide Status Bar in SDI and MDI Applications Mount Laurel NJ
- Code to View/Hide Status Bar in SDI and MDI Applications Neptune NJ
- Code to View/Hide Status Bar in SDI and MDI Applications New Brunswick NJ
- Code to View/Hide Status Bar in SDI and MDI Applications Newark NJ
- Code to View/Hide Status Bar in SDI and MDI Applications Newton NJ
- Code to View/Hide Status Bar in SDI and MDI Applications North Arlington NJ
- Code to View/Hide Status Bar in SDI and MDI Applications North Bergen NJ
- Code to View/Hide Status Bar in SDI and MDI Applications North Brunswick NJ
- Code to View/Hide Status Bar in SDI and MDI Applications Nutley NJ
- Code to View/Hide Status Bar in SDI and MDI Applications Ocean City NJ
- Code to View/Hide Status Bar in SDI and MDI Applications Old Bridge NJ
- Code to View/Hide Status Bar in SDI and MDI Applications Orange NJ
- Code to View/Hide Status Bar in SDI and MDI Applications Palisades Park NJ
- Code to View/Hide Status Bar in SDI and MDI Applications Paramus NJ
- Code to View/Hide Status Bar in SDI and MDI Applications Parlin NJ
- Code to View/Hide Status Bar in SDI and MDI Applications Parsippany NJ
- Code to View/Hide Status Bar in SDI and MDI Applications Passaic NJ
- Code to View/Hide Status Bar in SDI and MDI Applications Paterson NJ
- Code to View/Hide Status Bar in SDI and MDI Applications Pennsauken NJ
- Code to View/Hide Status Bar in SDI and MDI Applications Perth Amboy NJ
- Code to View/Hide Status Bar in SDI and MDI Applications Phillipsburg NJ
- Code to View/Hide Status Bar in SDI and MDI Applications Piscataway NJ
- Code to View/Hide Status Bar in SDI and MDI Applications Plainfield NJ
- Code to View/Hide Status Bar in SDI and MDI Applications Plainsboro NJ
- Code to View/Hide Status Bar in SDI and MDI Applications Pleasantville NJ
- Code to View/Hide Status Bar in SDI and MDI Applications Point Pleasant Beach NJ
- Code to View/Hide Status Bar in SDI and MDI Applications Princeton Junction NJ
- Code to View/Hide Status Bar in SDI and MDI Applications Princeton NJ
- Code to View/Hide Status Bar in SDI and MDI Applications Rahway NJ
- Code to View/Hide Status Bar in SDI and MDI Applications Ramsey NJ
- Code to View/Hide Status Bar in SDI and MDI Applications Red Bank NJ
- Code to View/Hide Status Bar in SDI and MDI Applications Rockaway NJ
- Code to View/Hide Status Bar in SDI and MDI Applications Rutherford NJ
- Code to View/Hide Status Bar in SDI and MDI Applications Sayreville NJ
- Code to View/Hide Status Bar in SDI and MDI Applications Scotch Plains NJ
- Code to View/Hide Status Bar in SDI and MDI Applications Secaucus NJ
- Code to View/Hide Status Bar in SDI and MDI Applications Sewell NJ
- Code to View/Hide Status Bar in SDI and MDI Applications Sicklerville NJ
- Code to View/Hide Status Bar in SDI and MDI Applications Somerset NJ
- Code to View/Hide Status Bar in SDI and MDI Applications Somerville NJ
- Code to View/Hide Status Bar in SDI and MDI Applications South Amboy NJ
- Code to View/Hide Status Bar in SDI and MDI Applications South Orange NJ
- Code to View/Hide Status Bar in SDI and MDI Applications South Plainfield NJ
- Code to View/Hide Status Bar in SDI and MDI Applications South River NJ
- Code to View/Hide Status Bar in SDI and MDI Applications Summit NJ
- Code to View/Hide Status Bar in SDI and MDI Applications Teaneck NJ
- Code to View/Hide Status Bar in SDI and MDI Applications Toms River NJ
- Code to View/Hide Status Bar in SDI and MDI Applications Trenton NJ
- Code to View/Hide Status Bar in SDI and MDI Applications Tuckerton NJ
- Code to View/Hide Status Bar in SDI and MDI Applications Union City NJ
- Code to View/Hide Status Bar in SDI and MDI Applications Union NJ
- Code to View/Hide Status Bar in SDI and MDI Applications Vincentown NJ
- Code to View/Hide Status Bar in SDI and MDI Applications Vineland NJ
- Code to View/Hide Status Bar in SDI and MDI Applications Voorhees NJ
- Code to View/Hide Status Bar in SDI and MDI Applications Wayne NJ
- Code to View/Hide Status Bar in SDI and MDI Applications West Milford NJ
- Code to View/Hide Status Bar in SDI and MDI Applications West New York NJ
- Code to View/Hide Status Bar in SDI and MDI Applications West Orange NJ
- Code to View/Hide Status Bar in SDI and MDI Applications Westfield NJ
- Code to View/Hide Status Bar in SDI and MDI Applications Westwood NJ
- Code to View/Hide Status Bar in SDI and MDI Applications Williamstown NJ
- Code to View/Hide Status Bar in SDI and MDI Applications Willingboro NJ
- Code to View/Hide Status Bar in SDI and MDI Applications Wyckoff NJ
Related Local Event
Computer Technology Expo
Dates: 7/21/2009 - 7/23/2009
Location: Atlantic City Convention Center
Atlantic City, NJ
View Details

Rss   Delicious   Digg   Add To My Yahoo   Add To My Google   Bookmark   Search Plugin

Topics:
Architecture & Design Languages & Tools Project Management Web Services
Database Microsoft & .NET Security Wireless
Java Open Source Techniques XML