Drstein99 Posted January 5, 2004 Posted January 5, 2004 How to I take the number of seconds (integer) and turn it into hours and minutes like "HH:MM" (string)? Quote www.DRSTEIN99.com www.RAIDGEAR.net www.THERE.com -> Tell them DrStein99 sent ya!
Administrators PlausiblyDamp Posted January 5, 2004 Administrators Posted January 5, 2004 quick and easy way is to use a TimeSpan Dim ts As TimeSpan ts = TimeSpan.FromSeconds() MessageBox.Show(ts.ToString()) Quote Posting Guidelines FAQ Post Formatting Intellectuals solve problems; geniuses prevent them. -- Albert Einstein
Drstein99 Posted January 5, 2004 Author Posted January 5, 2004 perfect. thanks Quote www.DRSTEIN99.com www.RAIDGEAR.net www.THERE.com -> Tell them DrStein99 sent ya!
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.