As to converting the number, in C++ you can use std::stringstream like so
std::stringstream ss; ss << credits; std::string creditString = ss.str(); // returns string representation of credits.
Posted 10 January 2012 - 09:31 PM
std::stringstream ss; ss << credits; std::string creditString = ss.str(); // returns string representation of credits.
Posted 10 January 2012 - 09:28 PM