I'm using vs-2013 for MFC application Development & my MFC project's character set is multi-byte character set I want to know How do I convert ULONGLONG data-type to CString in my MFC Application
ULONGLONG t = 238979237947;
CString S;
//S.Format(L"blah blah : %I64u", t); // For Unicode
S.Format("blah blah : %I64u", t); // For Multi-byte
MessageBox(S);
We use cookies to ensure that we give you the best experience on our website. If you continue to use this site we will assume that you are happy with it.OkRead more