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")