I recently coded a program which displays the timespan between 2 different times. I used the DateTime function to do this but now i can't calculate the speed as you cannot use DateTime in division, is there another function i should use?
This is my code so far:
Code:
Public Class Form1
Dim starttime As DateTime
Dim endtime As DateTime
Dim timetaken As TimeSpan
Dim registration