is there a way to set the default font to be used to draw all future controls that are created? the only way that i know to change the font on a child window is by the following code:

SendMessage(hWnd, WM_SETFONT,(WPARAM)GetStockObject(DEFAULT_GUI_FONT ), MAKELPARAM(TRUE, 0));

it probably has something to do with the classes that are used to draw the controls, but i have no idea how to go about changing it.

alandrums