Hi everyone,
Well my problem look simple. I just want to know ih there's a way to modify Time. I explain my self:
I have e report and want this report be filterd on date Range. The begin of this range is a field of the reselected record (no problem here) but the end of this range have to be the same as the begin, but one minutes later: For example, if the Field of my record is 14/10/11 11:40, my filter have to be as following :
14/10/11 11:40..14/10/11 11:41
But I have no ideas about how to increase minutes.
First of all i've just take time from my datetime, and try something like
MyTime = Time + 0001T
But it's impossible to add 2 time
Anybody know how i can do this?
Thanks for help,
Arkanan
Comments
The right syntax is: MyTime := Time + X, where X is the time wanted to add, in milisecond
Arka
-Mohana
http://mohana-dynamicsnav.blogspot.in/
https://www.facebook.com/MohanaDynamicsNav
time is in milliseconds, so 1 second = 1000 milliseconds, 1 minute = 60 seconds, ...
|To-Increase|