DrawText with specified Color and Font
For that what property i want to use in DrawText Methord?
//
// pDC Client device
GetClientRect(&rcPoint);
//// create the font
VERIFY(fntNew.CreateFontIndirect(&lfFont));
// create font
CFont* fntOld = pDC->SelectObject(&fntNew);
// set text color
pDC->SetTextColor(clrNew);
// for display text
pDC->DrawText(strText, strText.GetLength(), &rcPoint,0 );
// delete font
fntOld->DeleteObject();