MFC 文字列が数値かどうかチェック

// 数値ならTRUE
BOOL isNumeric(CString& str)
{
	char* p;
	strtof(str.GetBuffer(0), &p);
	return *p == 0;
}