先创建一个edit对象,然后可以调用void ReplaceSel(LPCTSTR lpszNewText, BOOL bCanUndo = FALSE);这个函数,具体你可以用MSDN或百度搜索CEdit,在百度百科里应该有很多接口的,你看着用就行了
char str[10];
sprintf(str, "%d", number);
CWnd* p = GetDlgItem(ID_XX);
p->SetWindowText(str);
举例子~
#include
#include
#include
srand(time(NULL));
for(int i=IDC_EDIT1;i
SetDlgItemInt(this->m_hWnd, //窗口句柄
i, //单个文本框ID
(UINT)rand()%9, //产生9以内的随机数
NULL); //NULL
}