Skip to content
  • Categories
  • Recent
  • Tags
  • Popular
  • World
  • Users
  • Groups
Skins
  • Light
  • Cerulean
  • Cosmo
  • Flatly
  • Journal
  • Litera
  • Lumen
  • Lux
  • Materia
  • Minty
  • Morph
  • Pulse
  • Sandstone
  • Simplex
  • Sketchy
  • Spacelab
  • United
  • Yeti
  • Zephyr
  • Dark
  • Cyborg
  • Darkly
  • Quartz
  • Slate
  • Solar
  • Superhero
  • Vapor

  • Default (No Skin)
  • No Skin
Collapse
Code Project
  1. Home
  2. General Programming
  3. C / C++ / MFC
  4. How to maximize a child window in a MDI project

How to maximize a child window in a MDI project

Scheduled Pinned Locked Moved C / C++ / MFC
helptutorial
4 Posts 3 Posters 0 Views 1 Watching
  • Oldest to Newest
  • Newest to Oldest
  • Most Votes
Reply
  • Reply as topic
Log in to reply
This topic has been deleted. Only users with topic management privileges can see it.
  • U Offline
    U Offline
    uNsignedINT
    wrote on last edited by
    #1

    Hello, I don't know how to get my child window maximized when my app starts! Need help!!! Thanks!:(

    T A 2 Replies Last reply
    0
    • U uNsignedINT

      Hello, I don't know how to get my child window maximized when my app starts! Need help!!! Thanks!:(

      T Offline
      T Offline
      tomiczek
      wrote on last edited by
      #2

      overwite the function ActivateFrame in your derived CMDIChildWnd class. usually it is called CChildFrame... implement it like this: void CChildFrame::ActivateFrame(int nCmdShow) { // TODO: Speziellen Code hier einfügen und/oder Basisklasse aufrufen nCmdShow = SW_SHOWMAXIMIZED; CMDIChildWnd::ActivateFrame(nCmdShow); }

      U 1 Reply Last reply
      0
      • U uNsignedINT

        Hello, I don't know how to get my child window maximized when my app starts! Need help!!! Thanks!:(

        A Offline
        A Offline
        Alin Negru
        wrote on last edited by
        #3

        Add a handler for WM_CREATE in CChildFrame and there ShowWindow(SW_MAXIMIZE);

        1 Reply Last reply
        0
        • T tomiczek

          overwite the function ActivateFrame in your derived CMDIChildWnd class. usually it is called CChildFrame... implement it like this: void CChildFrame::ActivateFrame(int nCmdShow) { // TODO: Speziellen Code hier einfügen und/oder Basisklasse aufrufen nCmdShow = SW_SHOWMAXIMIZED; CMDIChildWnd::ActivateFrame(nCmdShow); }

          U Offline
          U Offline
          uNsignedINT
          wrote on last edited by
          #4

          Thank you!! It did the trick! See ya!

          1 Reply Last reply
          0
          Reply
          • Reply as topic
          Log in to reply
          • Oldest to Newest
          • Newest to Oldest
          • Most Votes


          • Login

          • Don't have an account? Register

          • Login or register to search.
          • First post
            Last post
          0
          • Categories
          • Recent
          • Tags
          • Popular
          • World
          • Users
          • Groups