time:= 08:00 AM - 12:45 PM
how could i compute for the time difference of the variable time using lotus script?
thanks in advance
time:= 08:00 AM - 12:45 PM
how could i compute for the time difference of the variable time using lotus script?
thanks in advance
Subject: Compute time difference
Try this sample code:
T1 = Timenumber(12, 45, 0) T0 = Timenumber(8, 0, 0) D = Cdat(T1 - T0) Messagebox Cstr(D)
If this is not what you want to do, then you must explain your problem in more detail.