I'm coming from Delphi 2007 to Delphi 10.3.3 .
In D2007 i used the commands below to make sure the date would be handled by the app with the desired format :
shortdateformat := 'dd/mm/yyyy';
dateseparator := '/';
Now the same commands would fail on D10.3.3 with the error below :
[dcc32 Error] : E2003 Undeclared identifier: 'shortdateformat'
How to do the same thing on the new Delphi ?
Thanks