Home > Windows API > Convert Milliseconds to string eg: 1 min 10 secs

Convert Milliseconds to string eg: 1 min 10 secs

Use StrFromTimeInterval.

An eg:

TCHAR szTimeString[50] = { 0 };
const DWORD dwMilliSecs = 34000;

StrFromTimeInterval( szTimeString, 50, dwMilliSecs, 50 );
cout << szTimeString;[/sourcecode] Output: 34 sec Note: Times that exceed twenty four hours are not converted to days or months.  Fractions of seconds are ignored.

  1. No comments yet.
  1. No trackbacks yet.

Leave a comment