2010-05-14 StrToInt()のDouble版を手作りする CPP MFC VC #include <string> ・・・ const double StrToDouble(CString& s) { return std::atof(s.GetBuffer(0)); }ネタ元 http://www.richelbilderbeek.nl/CppStrToDouble.htm