Click to See Complete Forum and Search --> : ULARGE_INTEGER


Michael Decker
April 5th, 1999, 12:11 PM
Does anyone know how to convert Microsoft's ULARGE_INTEGER data type to a string?

Gomez Addams
April 5th, 1999, 02:29 PM
Try this :

sprintf( buffer, "value is %I64d\n", ulargeint.QuadPart );

I would guess that the CString Format member can handle this also.

Michael Decker
April 5th, 1999, 03:10 PM
Thanks for your reply.
Actually, I found that Microsoft had the function '_ui64toa()'.