Data do Setup
Alguém sabe como capturar a Data do Setup?
Anonymous
Curtidas 0
Respostas
Db
03/02/2003
funtion ObtemDataLocal: TDateTime;
var SystemTime: TSystemTime;
ano, mes, dia, hora, min, seg, mseg: word;
begin
GetLocalTime( SystemTime );
with SystemTime do
begin
ano := wYear;
mes := wMonth;
dia := wDay;
hora := wHour;
min := wMinute;
seg := wSecond;
mseg := wMilliseconds;
end;
Result := EncodeDateTime( ano, mes, dia, hora, min, seg, mseg );
end;
var SystemTime: TSystemTime;
ano, mes, dia, hora, min, seg, mseg: word;
begin
GetLocalTime( SystemTime );
with SystemTime do
begin
ano := wYear;
mes := wMonth;
dia := wDay;
hora := wHour;
min := wMinute;
seg := wSecond;
mseg := wMilliseconds;
end;
Result := EncodeDateTime( ano, mes, dia, hora, min, seg, mseg );
end;
GOSTEI 0