vote up 1 vote down star

I have the following bit of Delphi 7 code to increment a TDateTime value by one hour. For some reason it doesn't work.

 StatusMemo.Lines.Add('prior '+DateTimeToStr(dtval));
 IncHour(dtval,1); // add an hour for DST
 StatusMemo.Lines.Add('after '+DateTimeToStr(dtval));

Contents of StatusMemo after code runs:

prior 6/24/2009 5:35:40 AM
after 6/24/2009 5:35:40 AM

It behaves like IncHour is not working. I tried using IncMinute(dtval,60), and got the same result. What am I missing?

flag

71% accept rate

1 Answer

vote up 12 vote down check

IncHour returns the incremented value, it doesn't update the passed in variable.

So you need to do:

dtval := IncHour(dtval, 1);
link|flag
Bingo. Thanks - I totally missed that it was a function, not a procedure. – tim11g Jun 25 at 19:02
4  
Hm, that name is unfortunate. With Integers, it's Inc(x) or x := Succ(x). – Ulrich Gerhardt Jun 26 at 6:14
Seems RTFM before using would avoid the entire question.... – Fabricio Araujo Jun 27 at 4:34

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.