I get a compiler error when trying to use FillChar (identifier not found). I know there are several units that are now specific for Web Core but not finding where FillChar is hiding. Any guidance would greatly be appreciated. Here is sample code:
procedure TForm1.WebFormCreate(Sender: TObject);
var
FieldsChanged: array of Boolean;
begin
SetLength(FieldsChanged, 32); // Set the size of the array
FillChar(FieldsChanged[0], Length(FieldsChanged), False); // Initialize all elements to False
end;
FillChar() doesn't exist in TMS WEB Core.
This is because underlying this is expected to fill a memory range and as everything is transpiled to JavaScript, in JavaScript there is no concept of memory.