Search code examples
lazarusfreepascal

Lazarus RegisterFields


I have the following code in Delphi 7, and I want to port to Lazarus/FPC (currently I'm using Lazarus 1.0.10)

procedure Register;
begin
    RegisterFields([TXTimeField]);
end; 

And I got the following error:

Error: Identifier not found "RegisterFields"

Which is the equivalent identifier for RegisterFields in FPC/Lazarus?


Solution

  • Unfortunately, there is not a RegisterFields yet in Lazarus.

    See this for more information.