I have a static control...that I'd like to have it underlined...
To set the GUI font to the static control I use this:
Code:
SendMessage(hStatic, WM_SETFONT, (WPARAM)GetStockObject(DEFAULT_GUI_FONT), 0);
My question is...how can I underlined the text if I want to use the same font? Do I need to use CreateFont for this...?