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