예를 들어 10시50분10초와
11시02분20초간의 시간차를 알고 싶은데
어떤 팁이 있을까요?
초단위도 좋고 분단위도 좋거든요
atime을 string로 '105010'으로하고
btime을 string값 '110220'으로 저장한후
atime와 btime간의 차이를
integer값으로 구해지는 것을 원합니다
잘 아시는분 도움 부탇드립니다
시간을 Integer 값으로 구한다..
초단위로요 ? 아니면 Milli-second 단위로요 ?
// 초로 구하기
function ElapsedSec(fromDateTime, toDateTime: TDateTime): Int64;
var
h, m, s, ms: Word;
begin
DecodeTime(toDateTime - fromDateTime, h, m, s, ms);
result := (h * 60 + m) * 60 + s;
end;
// 1/1000 초로 구하기
function ElapsedMSec(fromDateTime, toDateTime: TDateTime): Int64;
var
h, m, s, ms: Word;
begin
DecodeTime(toDateTime - fromDateTime, h, m, s, ms);
result := ((h * 60 + m) * 60 + s) * 1000 + ms;
end;
예를 들어 10시50분10초와 11시02분20초간의 시간차를 알고 싶은데 어떤 팁이 있을까요? 초단위도 좋고 분단위도 좋거든요 atime을 string로 '105010'으로하고 btime을 string값 '110220'으로 저장한후 atime와 btime간의 차이를 integer...
이중철
•
2002.04.29 08:55
MilliSecondsBetween
SecondsBetween
이 두 function이 밑에분이 만든 함수와 같은겁니다.
그럼 허접답...
이준해
•
2002.04.27 03:29
시간을 Integer 값으로 구한다..
초단위로요 ? 아니면 Milli-second 단위로요 ?
// 초로 구하기
fun...
이재봉
•
2002.04.27 00:51
전역변수로
var
BeforeTime, AfterTime :TDateTime;
procedure TForm1.Button1Click(S...
SecondsBetween
이 두 function이 밑에분이 만든 함수와 같은겁니다.
그럼 허접답변 ㅋㅋ..