类似这样,细节你慢慢调整:
Dim dlg As New SaveFileDialog '定义一个新的SaveFileDialog
dlg.Filter= "excel文件|*.xls" '设置筛选器
If dlg.ShowDialog = DialogResult.Ok Then '如果用户单击了确定按钮
Dim ex As New Exporter
ex.SourceTableName ="crm_products" '指定导出表
ex.filepath = dlg.FileName '指定目标文件
ex.Format = "Excel" '导出格式为Excel
ex.Export
ex = New Exporter
ex.SourceTableName ="第二个表" '指定导出表
ex.filepath = dlg.FileName '指定目标文件
ex.Format = "Excel" '导出格式为Excel
ex.Export
End If