Sizing an MFC Window

c++, mfc

Solution

You can also set the size (with `SetWindowPos()`) from within `CMainFrame::OnCreate()`, or in the `CWinApp`-derived class' `InitInstance`. Look for the line that says `pMainFrame->ShowWindow()`, and call `pMainFrame->SetWindowPos()` before that line. That's where I always do it.

Problem

I have an MFC app which I have been working on for a few weeks now, I want to manually set the dimensions of the main frame when it is loaded, can someone give me a hand with this, specifically where to put the code as well? Thanks!

Original source