不是自己写的 你右键编辑框点建立类向导 然后点EN_CHANGE事件,生成函数,在里面写代码就可以了
生成类似一下代码
void CDivideDlg::OnChangeEdit1()
{
// TODO: If this is a RICHEDIT control, the control will not
// function and call CRichEditCtrl().SetEventMask()
// with the ENM_CHANGE flag ORed into the mask.
// TODO: Add your control notification handler code here
CString str;
GetDlgItem(IDC_EDIT1)->GetWindowText(str);
if(str.GetLength()%8==0)
{
AfxMessageBox("可以每8个输出一次啦");
}
}