CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com
Results 1 to 3 of 3

Thread: ULARGE_INTEGER

  1. #1
    Join Date
    Apr 1999
    Posts
    90

    ULARGE_INTEGER

    Does anyone know how to convert Microsoft's ULARGE_INTEGER data type to a string?


  2. #2
    Join Date
    May 1999
    Location
    Oregon, USA
    Posts
    302

    Re: ULARGE_INTEGER

    Try this :

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

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



  3. #3
    Join Date
    Apr 1999
    Posts
    90

    Re: ULARGE_INTEGER

    Thanks for your reply.
    Actually, I found that Microsoft had the function '_ui64toa()'.


Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  





Click Here to Expand Forum to Full Width

Featured