注册 登录
编程论坛 Delphi论坛

怎么把一个数据集的数据批量传到另一个数据集里啊

laozei 发布于 2007-08-08 20:07, 844 次点击
怎么把一个数据集的数据批量传到另一个数据集里啊,在线等===谢谢啊
1 回复
#2
anthony6342007-08-08 21:08

a什么样的数据集? list么?
procedure TForm1.FormCreate(Sender: TObject);

var
MyList: TStringList;
Index: Integer;
begin
MyList := TStringList.Create;
try
MyList.Add('Animals');
MyList.Add('Flowers');

MyList.Add('Cars');

MyList.Sort; { Find will only work on sorted lists! }
if MyList.Find('Flowers', Index) then
begin
ListBox1.Items.AddStrings(MyList);
Label1.Caption := 'Flowers has an index value of ' + IntToStr(Index);
end;
finally
MyList.Free;
end;
end;

1