Hi > Can you explain what you mean here? I make good use of CString's > Format() myself so I'm wondering what you mean...
I've got to try and remember C now! If you have: long i = 10; scanf( buffer, "%c", i ); // scanf equiv to format Then you are trying to put a long into a space the size of a char. This will compile and you'll get mysterious runtime problems. However, with std::stringstream you don'f get these problems. Regards Paul Paul Grenyer Email: [EMAIL PROTECTED] Web: http://www.paulgrenyer.co.uk Have you met Aeryn: http://www.paulgrenyer.co.uk/aeryn/? Version 0.3.0 beta now available for download.
