simple code to change minutes to hours and minutes
simple code to change minutes to hours and minutes
Rate simple code to change minutes to hours and minutes
(1(1 Vote))
Dim hours As Integer
Dim minutes As Integer
hours = Fix(inmins / 60)
mins = inmins - hours * 60
MinsToHourMinsStr = Str(hours) + ":" + Str(mins)
End Function
simple code to change minutes to hours and minutes Comments
No comments yet — be the first to post one!
Post a Comment