We can set the constants defined in Delphi, like DecimalSeparator, ShortDateFormat and others like in the code below. To a complete list of these variables, look at Currency and date/time formatting variables in Delphi Help.
~~~~~~~~~~~~~~~~~~~~~~~~~
procedure SetLocale;
begin
DecimalSeparator := '.';
ThousandSeparator : = ',';
ShortDateFormat := 'mm/dd/yy';
end;
~~~~~~~~~~~~~~~~~~~~~~~~~
Delphi tips navigator:
» Window flashing
« ToolTip font hint properties

