-
Notifications
You must be signed in to change notification settings - Fork 19
Open
Description
This code would be changed
if IsDate(txt) then
begin
if BiDiMode = bdRightToLeft then
begin
txt := MonthDayYearFormat(txt);
xlSheet.Range['A4:Z4'].Cells[ARow, ACol + 1].NumberFormat :=
'yyyy' + DateSeparator + 'mm' + DateSeparator + 'dd';
end;
end;
to
if IsDate(txt) then
begin
if BiDiMode = bdRightToLeft then
begin
txt := MonthDayYearFormat(txt);
xlSheet.Range['A4:Z4'].Cells[ARow, ACol + 1].NumberFormat :=
'yyyy' + FormatSettings.DateSeparator + 'mm' + FormatSettings.DateSeparator + 'dd';
end;
end;
Metadata
Metadata
Assignees
Labels
No labels