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
    2

    How to get MDI client area minus control bars?

    I wonder if there is an easy way to get the client area of an MDI application minus the control bars. What I mean is the total area for displaying child windows; control bars will block child windows. I can use GetClientRect() to get the whole client area of the application window, but then I would have to recalculate the resulting rect based on what bars are visible on the screen. There must be an easy way to do this.

    thanks,

    jonas

    jonas


  2. #2
    Join Date
    Apr 1999
    Posts
    27,449

    Re: How to get MDI client area minus control bars?

    Possibly GetSystemMetrics() will help you.

    Regards,

    Paul McKenzie


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