data Function

Mohamed

New member
Joined
Dec 5, 2006
Messages
3
Programming Experience
Beginner
Good Mornning Every Body
i need to Create Function that Convert integer to
time format
Example
120 mean 00:02:00
75 mean 00:01:15
 
It works by just specifying the seconds, too:
VB.NET:
        Dim seconds As Integer = 120
        Dim ts As New TimeSpan(0, 0, seconds)
 
Back
Top