Does anyone know how to convert Microsoft's ULARGE_INTEGER data type to a string?
Printable View
Does anyone know how to convert Microsoft's ULARGE_INTEGER data type to a string?
Try this :
sprintf( buffer, "value is %I64d\n", ulargeint.QuadPart );
I would guess that the CString Format member can handle this also.
Thanks for your reply.
Actually, I found that Microsoft had the function '_ui64toa()'.