How to Change the Font & Font size in Edit or Static Controls?
Use WM_SETFONT...
invoke SendMessage, hEdit, WM_SETFONT, hFont, 1
invoke SendMessage, hEdit, WM_SETFONT, hFont, 1
And you've got to create the font prior to making a call to either SendDlgItemMessage or SendMessage.
Posted on 2006-02-06 20:57:46 by XCHG