seconds to hours and minutes

quick and easy way is to use a TimeSpan
Code:
Dim ts As TimeSpan
ts = TimeSpan.FromSeconds(<number of seconds here>)
MessageBox.Show(ts.ToString())
 
Back
Top