I am writing a MFC application and would like to change the font size of some of the static text. So I use the following.
CFont m_font;
m_font.CreatePointFont(120,"Times New Roman");
m_Test.SetFont(&m_font);
m_Test.SetWindowText(strTest);
Now my question is, how to I get the layout editor in Microsoft Visual C++ to look the same so I know how big to make my static text box? (Other than trial and error)