I am doing this :
procedure TForm1.Button1Click(Sender: TObject);
var dtStart: TDateTime;
I: Integer;
begin
dtStart := DateTimePicker1.Date;
for I := 0 to 6 do
StringGrid1.Cells[I+1, 1] := FormatDateTime('dd/mm/yyyy', dtStart + I);
end;
Any way to add the name of the day together with the date i.e like MON TUE WED etc
Just change your
FormatDateTimeformat string: