标签: c windows winapi sendmessage
我正在使用WIN32 API。我想取一个整数,假设1000通过编辑框输入。我正在使用sendmessage()函数来获取输入,但它只能输入字符串。如何将整数作为输入?
答案 0 :(得分:1)
您需要将编辑框中输入的字符串转换为这样的整数,例如:
int n = atoi(myString);