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.
私は現在、さまざまなユーザーフォームによって管理されているExcelドキュメントを持っています。ドキュメントを編集した後、ユーザーフォームの1つに保存オプション(ボタン)を追加したいと思います。
したがって、[保存]または[名前を付けて保存... ]ウィンドウを開くコードがあるかどうかを知りたいですか?
私が達成したいのは、ユーザーが(ユーザーフォームから)選択できる場所に、ファイルを.xslmファイルではなく通常の.xslファイルとして保存することです。
このようなもの... ?
Sub test() Dim vSave_File As Variant vSave_File = Application.GetSaveAsFilename("Test.xls", "Excel files (*.xls),*.xls", 1, "Dialog Title") End Sub