1:获取编辑框的数值:GetDlgItemInt(IDC_EDIT2)
例子:int a = GetDlgItemInt(hwndDlg,IDC_a,NULL,TRUE);///注释:用GetDlgItemInt函数获取hwndDlg窗口中的IDC_a控件中输入的整数值并赋给变量a。
UpdateData(TRUE);
CString Str_pos;
m_PlanPosition.GetWindowText(Str_pos);m_PlanPosition类型为Cedit
long m_position=_ttol(Str_pos);//将字符串转成长整型,类似,可以将字符串型转成需要的。
2:将数据显示到编辑框中:
法一:此时编辑框关联的变量类型为CEdit时
int i = GetDlgItemInt(IDC_EDIT2);
CString str;
str.Format("%d", i);
m_edit2.SetWindowText(str);