Different font in dialog
Mobile
2
Posts
2
Posters
0
Views
1
Watching
-
Hi: Anyone know if in a dialog box in embedded Visual C++, can different control such as textbox can have different font size? if it is possible, anyone can teach me how to do it??? Thank You. Any help will be appreciated
Do this: 1 - Create the font you want to use 2 - Retrieve the control's HWND using GetDlgItem 3 - Use SetFont (MFC) or WM_SETFONT to set the font 4 - Destroy the font when the dialog closes Regards, João Paulo