“导出”与“writer导出”的区别? “导入”与“Reader导入”的区别?
“导出”:Dim ccbCols As WinForm.CheckedComboBox = e.Form.Controls("ccbCols")
If ccbCols.Text > "" Then
Functions.Execute("ImportFromExecl",0,e.Form.Controls("ncbIndex").Value,e.Form.Controls("ncbLength").Value,ccbCols.Text.Split(","),False)
Else
Functions.Execute("ImportFromExecl",0,e.Form.Controls("ncbIndex").Value,e.Form.Controls("ncbLength").Value,Nothing)
End If
writer导出”:Dim ccbCols As WinForm.CheckedComboBox = e.Form.Controls("ccbCols")
If ccbCols.Text > "" Then
Functions.Execute("ExportToExecl",1,ccbCols.Text.Split(","),False)
Else
Functions.Execute("ExportToExecl",1,Nothing)
End If