Jump to content

pietrt

Members
  • Content Count

    9
  • Joined

  • Last visited

Posts posted by pietrt


  1. You can also use the RemoveAll method:

      list.RemoveAll(
        function(const foo: TFoo): boolean
        begin
          result := foo.Value < 100;
        end);
      dict.RemoveAll(
        function(const aPair: TPair<string,TFoo>): boolean
        begin
          result := aPair.Value.Value < 100;
        end);

     

    • Like 1

  2. I can confirm this, but 

    Left click on the FDMemtable1 object and choose "Fields editor..."  

    again and you will see your fielddefs again.

    The fielddefs were in the formfile the whole time, but did not show up in the object inspector.

×