导入代码如下:Dim dlg As New OpenFileDialog '定义一个新的OpenFileDialog dlg.Filter= "excel文件|*.xls" ' '设置筛选器 If dlg.ShowDialog = DialogResult.Ok Then '如果用户单击了确定按钮 Dim mg As New Merger mg.SourcePath = dlg.FileName mg.Format = "excel" '指定格式 mg.SourceTableName = "物料信息" '指定要合并的表 mg.DataTableName = "Tab_wlbh" '指定接收数据的表 mg.Merge() '开始合并 End If