Adding time

Hi all ,

I have some problem.I am giving the detail…

1.some mail come to my mailbox if

i) I checked then ok and i will forword to the resposiable person.

ii)I am not checking that mail within 4 hour then it shuold be forwarded to autometically to next responsiable person.

I am capturing the arrival time and add [4:00:00]to it and compare toarriavl time.

arrivaltime + 04;00;00=reqtime

reqtime>=arrivaltime then mail.

But i am not able to add this time i am given u my code

FIELD time1:=@Time(@Now);

t2:=time1;

t3 :=@Time(4;0;0);

FIELD time2:=t3;

t1:=time1+time2;

t4:=t1;

@SetField(“t”;(t1));

t:= (t1)/3600;

@Prompt ([Ok];“a”;@TextToTime(t4))

Plz any idea …

thanxs

Rajeev.

Subject: adding time

Have you seen @Adjust?

t1:=@adjust(time1,0,0,0,4,0,0);

Subject: RE: adding time

Hi Meli;Lots of thanxs.you dont know friend i am searching for this last 3 days.

Once again thanks.