D
probier es mal hiermit vielleicht hilft es dir ja weiter
CClientDC dc(this);
HFONT myFont;
int Schriftgroesse = 12;
myFont = CreateFont(Schriftgroesse, // nHeight
0, // nWidth
0, // nEscapement
0, // nOrientation
FW_NORMAL, // nWeight
FALSE, // bItalic
FALSE, // bUnderline
0, // cStrikeOut
ANSI_CHARSET, // nCharSet
OUT_DEFAULT_PRECIS, // nOutPrecision
CLIP_DEFAULT_PRECIS, // nClipPrecision
DEFAULT_QUALITY, // nQuality
DEFAULT_PITCH | FF_SWISS, // nPitchAndFamily
"Arial");
dc.SelectObject(myFont);