Microsoft
Software
Hardware
Network
Question : TimeSpan Math
Is there a way to accurately return the diff between TimeSpans?
For example; inTrackLength = 00:54:16.1220000 and inTimeElapsed = 00:51:30.3910000
Dim TimeRemaining As TimeSpan = inTrackLength.Subtract(inT
imeElapsed
)
Since I am only displaying Hours:Minutes:Seconds
TimeRemaining is 00:02:45.7310000
I would expect TimeRemaining to be rounded to 00:02:46.
I guess my real question is how do I round-up TimeRemaining to the nearest second?
Answer : TimeSpan Math
you can try to check TotalMilliseconds part...
ms = ts.TotalMilliseconds
ts.TotalMilliseconds=0
if ms > 0.5 then ts.add(new (0,0,0,0,0,1,0))
Random Solutions
Network Diagnostic Tool on CentOS 5.4
Having problems getting my VOIP setup working?
well vs borewell
Revert to Visual Studio 2008
This search script is presenting the option for Next 10 when there aren't any results. What do I need to add to not show when there aren't results?
Internet Explorer - Links redirecting to strange sites
Trying to connect SSIS packages to Oracle database
sendAndLoad onHTTPStatus issue
Delphi Read huge files into an ansistring chunks
RHEL command to see how much ram and hard drive in the box