Hi All,
I would like a vba script that will add 10 minutes to the time that I have in a userform textbox, but also the option to add 9 mins 34 secs etc...
This has been covered in other posts except my time needs to be in a specific format as follows.
I am using a wintimer and the time is displayed as.
I want the time to be displayed this way i.e 1:26:50 (without am/pm on the end).
Thanks
I would like a vba script that will add 10 minutes to the time that I have in a userform textbox, but also the option to add 9 mins 34 secs etc...
This has been covered in other posts except my time needs to be in a specific format as follows.
I am using a wintimer and the time is displayed as.
Code:
strTime = Split(Format$(Now, "h:mm:ss am/pm"))(0)
I want the time to be displayed this way i.e 1:26:50 (without am/pm on the end).
Thanks