Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
VB.NET级别:初级
在我的界面上,用户在文本框中定义了案例的名称。我想将此名称用作我的 Excel 工作簿的文件名。
有没有办法做到这一点?
以下语句没有给出异常或错误,但它没有做我想做的事情。
oWB.savecopyas("D:\"val(textbox1.text)".xlsx")
提前致谢
尝试这个:
oWB.savecopyas("D:\" & textbox1.text & ".xlsx")