Index Visual C++ and MFC Fundamentals
- Click OK
- In the Win32 Static Library – Step 1 of 1, click both check boxes and click Finish
then click OK - To add a new header file, on the main menu, click File -> New...
- In the Files property page of the New dialog box, click C/C++ Header File. In the
File Name edit box, type mfcextent and click OK - In the empty file, type the following:
#ifndef MFCEXT_H_
#define MFCEXT_H_
namespace MFCExtensions
{
BOOL IsNatural(const CString Str);
BOOL IsNumeric(const CString Str);
int StringToInt(const CString Str);
double StringToFloat(const CString Str);
}