“Obtenga la fecha actual Delphi” Código de respuesta

Obtenga la fecha actual Delphi

var
  currentDate: TDateTime;
begin
  currentDate := Now;
  ShowMessage(DateToStr(currentDate)); //Show the current date 
  ShowMessage(TimeToStr(currentDate)); //Show the current time
end;
Ruben

Cómo retirar la fecha del sistema en Delphi

var.
currentDate: TDateTime;
begin.
currentDate := Now;
ShowMessage(DateToStr(currentDate)); //Show the current date.
ShowMessage(TimeToStr(currentDate)); //Show the current time.
end;
Important Ibis

Respuestas similares a “Obtenga la fecha actual Delphi”

Preguntas similares a “Obtenga la fecha actual Delphi”

Más respuestas relacionadas con “Obtenga la fecha actual Delphi” en Delphi

Explore las respuestas de código populares por idioma

Explorar otros lenguajes de código