杨 杨文 Unregistered / Unconfirmed GUEST, unregistred user! 1999-04-15 #1 delphi中用Tbatchmove 进行文件批处理时(mode is copy)目标文件不存在 desterminat 该怎么设? 如: 我要把c:/111.db 导到 a:/222.db?
X xuwentao Unregistered / Unconfirmed GUEST, unregistred user! 1999-04-15 #5 可以在Destination.tablename中设置全路径。(当然数据库得是PARADAX,FOXBASE等) 如:Destination.tablename:='a:/222.db';
F fx Unregistered / Unconfirmed GUEST, unregistred user! 1999-04-15 #6 table1:=Ttable.create(nil); table1.TableName :='a:/222.db'; batchmove1.Destination:=table1; batchmove1.Execute ;
table1:=Ttable.create(nil); table1.TableName :='a:/222.db'; batchmove1.Destination:=table1; batchmove1.Execute ;