BOOL OnInitDialog()
{
 CDialog::OnInitDialog();
 

 CHARFORMAT cf;
 ZeroMemory(&cf, sizeof(CHARFORMAT));
 m_edit.GetDefaultCharFormat(cf);
 cf.yHeight = 16 * 16;

 m_edit1.SetSel(0, m_edit.GetTextLength());
 m_edit1.SetSelectionCharFormat(cf);
 m_edit1.SetSel(0, 0);

 return TRUE;
}