A
Anthony
hey there!
I want a message box to appear at the end of my sub, and say something like
this:
"Done. 1 minute and 40 seconds."
I know how to do this:
Dim sTime as string ' Start Time
Dim eTime as string ' End Time
sTime = Time
My code
My code
My code
My code
My code
eTime = Time
Msgbox "Done. " & chr(13) & chr(13) & "Start Time: " & sTime & chr(13) &
chr(13) & "End Time: " & eTime
But How do i get the minutes and seconds? I tried subtracting sTime from
eTime but it gives a weird number.
I want a message box to appear at the end of my sub, and say something like
this:
"Done. 1 minute and 40 seconds."
I know how to do this:
Dim sTime as string ' Start Time
Dim eTime as string ' End Time
sTime = Time
My code
My code
My code
My code
My code
eTime = Time
Msgbox "Done. " & chr(13) & chr(13) & "Start Time: " & sTime & chr(13) &
chr(13) & "End Time: " & eTime
But How do i get the minutes and seconds? I tried subtracting sTime from
eTime but it gives a weird number.