How can I format a timespan to display the days as well as hours, minutes and seconds?
Here is my code that works without the days:
Here is some code that I have tried, with no luck:
Here is my code that works without the days:
Code:
ToolStripNextPlayTime.Text = "Time until ScheduleList Start: " & String.Format("{0:00}:{1:00}:{2:00}", ts.Hours, ts.Minutes, ts.Seconds)
Code:
ToolStripNextPlayTime.Text = "Time until ScheduleList Start: " & String.Format("{0:00}:{0:00}:{1:00}:{2:00}", ts.Days, ts.Hours, ts.Minutes, ts.Seconds)