According to MSDN, ColeDateTime has resolution of 1 millisecond but when I try to use add 0.002 seconds to a ColeDateTime object and try to output the seconds using GetSecond(), I still get an integer of seconds.

Can I print the milliseconds instead?

I did do some google search but couldn't find a definite answer. My problem is I have two times given tstart 11:13:26.001 (11am, 13 min, 26 second, 1 milliseconds) and tend in format like 11:17:13.001. I want to get times every 0.002 seconds between tstart and tend.

Thanks