greatverve
一般使用acedGetXXX();来获得一个用户输入的值。
int nCountNode = 3;
int nReturn;
nReturn 
= acedGetInt(_T("请输入一个整数然后回车:"),&nCountNode);
if(nReturn == RTNORM)
{
    CString str;
    str.Format(_T(
"%d"),nCountNode);
    AfxMessageBox(_T(
"你输入了:"+ str);
}

分类:

技术点:

相关文章:

  • 2022-12-23
  • 2022-12-23
  • 2021-04-02
  • 2022-12-23
  • 2021-12-24
  • 2021-07-21
  • 2021-09-08
猜你喜欢
  • 2022-12-23
  • 2021-12-02
  • 2021-12-02
  • 2022-12-23
  • 2021-11-17
  • 2021-05-28
  • 2022-12-23
相关资源
相似解决方案