Hi,
I have a project where I need to get the value of a year in a field so I use DecodeDate( dtDate, Year, Month, Day); where dtDate is a TDateTime variable, Year, Month, Day are Word variables.
When I run the code I get an error - 'Constant or type identifier expected'. I've downloaded the example Embarcadero have for using DecodeDate:
procedure TfAccounts.Button1Click(Sender: TObject);
var
Present: TDateTime;
Year, Month, Day: Word;
begin
Present:= Now;
System.SysUtils.DecodeDate(Present, Year, Month, Day);
Label1.Caption := 'Today is Day ' + IntToStr(Day) + ' of Month ' + IntToStr(Month) + ' of Year ' + IntToStr(Year);
end;
.. and get this same error. The 'Word' is red-underlines as the error. I have System.SysUtils in the Uses clause:
uses
Winapi.Windows, Winapi.Messages, System.SysUtils, System.Variants, ... etc
I have used this same code in a different project and it works with no error. I can't think of why it isn't working in this particular project. Unless some other unit in the Uses clause is causing a problem, although SysUtils comes almost first.
Any thoughts would be welcomed.