Dim dlg As New OpenFileDialog '定义一个新的SaveFileDialog dlg.Filter= "Excel|*.xls;*.xlsx" '设置筛选器 If dlg.ShowDialog = DialogResult.Ok Then '如果用户单击了确定按钮 Dim mg As New Merger mg.SourcePath = dlg.FileName mg.Format = "excel" '指定格式 mg.SourceTableName = "五保补助$" '指定要合并的表 mg.DataTableName = "五保补助" '指定接收数据的表 mg.Merge() '开始合并 End If