Hi all,
Do you have any idea about any book or site name where i get some example regaerding how to calculate diff between two time field.How to add and subtract two time filed and then comparethe result with third time field.
Thanxs for help.
Rajeev
Subject: how to get time diff example books name or site add
This site is probably as good a site as any!
On the right hand side see “Search this forum”. Type in the words “Time Difference” in the field below that label, and click Go.
If that doesn’t yield the results you want, repeat for the “Notes/Domino 4 and 5” forum.
HTH - Rufus.
Subject: how to get time diff example books name or site add
You can’t “add and subtract two time filed and then comparethe result with third time field”; adding two date/times is meaningless (and, in the Formula language, syntactically illegal), and subtracting them gives you a number, which can’t be compared to a “third date/time.”
What are you really trying to do?
Subject: RE: how to get time diff example books name or site add
Hi,Actually i have to send mail to three different user after 10 min .
I got a mial on 11.00 then second person will get the same mail at 11.10 and third person will get the same mail on 11.20.
any idea
Subject: RE: how to get time diff example books name or site add
In lotusscript, you could use the sleep statement:
doc.sendto = “second recipient’s name”
doc.send false
sleep 600
doc.sendto = “second recipient’s name”
doc.send false
sleep 600
doc.sendto = “third recipient’s name”
doc.send false