在我的机器上,以下代码正确读取了我的软件程序文件中的XLSX文件。但是当我在朋友机器上安装它时,单击按钮运行这段代码时,它会打开一个打开的文件对话框,几乎就像它无法读取文件一样。对于出了什么问题,有没有人有任何想法?
代码是:
Using fs As New FileStream(Application.StartupPath & "\DeliveryNoteTemplate.xlsx", FileMode.Open, FileAccess.Read, FileShare.ReadWrite)
WBook = ExcelWorkbook.ReadXLSX(Application.StartupPath & "\DeliveryNoteTemplate.xlsx")
fs.Flush()
End Using
谢谢