Answers for "Convert Seconds to HH:MM:SS in VB.Net"

VBA
0

Convert Seconds to HH:MM:SS in VB.Net

Dim intSeconds As Int64 = 32750
Dim timSpan As New TimeSpan(timSpan.TicksPerSecond * intSeconds)
Dim strTime As String = timSpan.Hours.ToString("00") & ":" & timSpan.Minutes.ToString("00") & ":" & timSpan.Seconds.ToString("00")
Posted by: Guest on March-11-2021

Code answers related to "Convert Seconds to HH:MM:SS in VB.Net"

Code answers related to "VBA"

Browse Popular Code Answers by Language