编码合并excel文件时,想让用户选择文件后,合并指定的文件,代码如下:
1、 Dim dlg As New OpenFileDialog2、 dlg.Filter= "Excel文件|*.xls"3、 If dlg.ShowDialog = DialogResult.OK Then
4、 Dim strs As String = dlg.FileName
5、Dim Book As New XLS.Book("& strs &")6、Dim Sheet As XLS.Sheet = Book.Sheets(0)
第5行的 ("& strs &")部分咋写?