How to convert a CString to integer in MFC (VC++ 6.0)
|
|
The simplesr approach is to use the atoi() function found in stdlib.h:
However, this does not deal well with the case where the string does not contain a valid integer, in which case you should investigate the strtol() function:
|
|||
|
|
|
|
you can also use good old sscanf.
|
||
|
|
|
|
|
||||
|
