Hi
I hope someone can help ?
I need a good function for making an int into a CString
any ideas
thanks
P
Printable View
Hi
I hope someone can help ?
I need a good function for making an int into a CString
any ideas
thanks
P
Use CString::Format. See in MSDN for details.
Thanks
Hi there Posty. Check out the following :
Voila!Code:
int nInt = 56789;
CString strConverted;
strConverted.Format("%d", nInt);
Hope that helps.