경과 시간 계산 / time

VNote 2017.06.07 17:51:19 *: Dim startTime As Date = Now

Dim runLength As Global.System.TimeSpan = Now.Subtract(startTime)
Dim My_Minutes As Integer = runLength.TotalMinutes
If My_Minutes > 3 Then
msgbox("ok"
End If

.