001
08.02.2007, 08:47 Uhr
WindDancer1
|
So funzt das leider auch net
void CThereader0001Dlg::OnFontClicked() { CFont m_font; CFontDialog fontDlg; if (fontDlg.DoModal() == IDOK) { CString strMsg; CString txtMessage; // strMsg.Format("Schriftart: %s\r\nStyleName: %s\r\nSchriftgrad: \t%d\r\nFarbe: \t\t%d\r\nGewicht: \t\t%d\r\nDurchgestrichent%d\r\nUnterstrichen: \t%d\r\nFett: \t\t%d\r\nKursiv: \t\t%d\r\n", // fontDlg.GetFaceName(), // fontDlg.GetStyleName(), // fontDlg.GetSize(), // fontDlg.GetColor(), // fontDlg.GetWeight(), // fontDlg.IsStrikeOut(), // fontDlg.IsUnderline(), // fontDlg.IsBold(), // fontDlg.IsItalic() // );
m_font.CreateFont (fontDlg.GetSize (),20,0,0,fontDlg.GetWeight (),fontDlg.IsItalic (),fontDlg.IsUnderline (),fontDlg.IsStrikeOut (),DEFAULT_CHARSET,OUT_DEFAULT_PRECIS,0,DEFAULT_QUALITY,DEFAULT_PITCH,fontDlg.GetFaceName ()); m_ctrEdit.SetFont(&m_font);
}
}
Der auskommentierte Code zeigt die Textattribute an, der Rest klappt net !
regards |