procedure TForm1.AppendtBtnClick(Sender: TObject); begin with BatchMove_Append do begin Mode := batAppend; //指定批拷贝的操作方式为增加方式 AbortOnKeyViol := False; Execute; //调用TbatchMove组件的Execute方法,执行批拷贝 StatusBar1.SimpleText := ‘已增加’+IntToStr(MovedCount - KeyViolCount) + '记录'; End; End;