Apr 17, 2002 #1 vvaldes Programmer Joined Sep 25, 2001 Messages 9 Location ES I don´t know change font in field CEdit of CFormView thanks.
Apr 17, 2002 #2 Jeffray Programmer Joined Jan 29, 2002 Messages 144 Location CA Add a member CFont m_font; in your formview class then in your OnInitDialog of your formview addassume the id of your edit control is IDC_EDIT1) m_font.CreatePointFont(180,"Courier New",NULL); GetDlgItem(IDC_EDIT1)->SetFont(&m_font); Upvote 0 Downvote
Add a member CFont m_font; in your formview class then in your OnInitDialog of your formview addassume the id of your edit control is IDC_EDIT1) m_font.CreatePointFont(180,"Courier New",NULL); GetDlgItem(IDC_EDIT1)->SetFont(&m_font);