Hi everybody,
How can i change the font of a edit control?
Printable View
Hi everybody,
How can i change the font of a edit control?
Call m_txtMyTextBox.SetFont() with a pointer to the new font (which must stay in existence for as long as the text box does). This is a CWnd method, so as controls such as text boxes and buttons are derived from CWnd, it works.