如何在DELPHI程序中实现表到文本文件的转换(100分)

  • 主题发起人 主题发起人 luoda
  • 开始时间 开始时间
L

luoda

Unregistered / Unconfirmed
GUEST, unregistred user!
在VFP中能用“COPY TO ***.TXT SDF(LIMITED)”实现表到
文本文件的转换,如何在DELPHI程序中实现此功能?
 
用BatchMove控件, source指向dbf, destination指向txt
 
还可以直接创建:
var
txt:tstrings;
i:integer;
x:string;
begin
txt:=tstringlist.create;
with table1 do
begin
while not eof do
begin
x:='';
for i:=0 to fieldcount-1 do
x:=x+field.asstring+#39; //#39 is tab??? forgot:-(
txt.add(x);
next;
end;
end;
txt.savetofile('test.txt');
 
多人接受答案了。
 
后退
顶部