I look for a possibility to create a table as a copy of another, something like
Code: Select all
Destination.FieldDefs.Clear;
for i:=0 to Source.FieldDefs.Count-1 do
Destination.FieldDefs.Add(Sorce.FieldDefs ...);
Destination.CreateTable;
Destination.Open;
Many thanks
Andreas Mosmann