次の方法で共有


CloseWindow マクロ アクション

適用先: Access 2013、Office 2013

" CloseWindow/ウィンドウを閉じる " アクションを使用すると、指定した Access ドキュメント タブを閉じることができます。何も指定しない場合は、アクティブなドキュメント タブが閉じます。

設定

"CloseWindow/ウィンドウを閉じる" アクションの引数は次のとおりです。

アクションの引数

説明

Object Type/オブジェクトの種類

ドキュメント タブを閉じるオブジェクトの種類を指定します。 [マクロ ビルダー] ウィンドウの [ アクションの引数] セクションにある [ オブジェクトの種類] ボックスの一覧で [ テーブル]、[ クエリ]、[ フォーム]、[ レポート]、[ マクロ]、[ モジュール]、[ データ アクセス ページ]、[ サーバー ビュー]、[ ダイアグラム]、[ ストアド プロシージャ]、[ 関数] のいずれかをクリックします。 アクティブなドキュメント タブを選択する場合は、この引数を指定しません。

注:

Visual Basic Editor でモジュールを閉じる場合は、"Object Type/オブジェクトの種類" 引数に "モジュール" を指定する必要があります。

Object Name/オブジェクト名

The name of the object to be closed. The Object Name box shows all objects in the database of the type selected by the Object Type argument. Click the object to close. If you leave the Object Type argument blank, leave this argument blank also.

Save/オブジェクトの保存

オブジェクトを閉じるときに、オブジェクトに加えた変更を保存するかどうかを指定します。 保存する場合は [ する]、保存せずに閉じる場合は [ しない]、保存するかどうかを毎回確認する場合は [ 確認] をクリックします。 既定値は [確認] です。

注釈

The CloseWindow action works on all database objects that the user can explicitly open or close. This action has the same effect as selecting an object and then closing it by right-clicking the object's document tab and then clicking Close on the shortcut menu, or clicking the Close button for the object.

If the Save argument is set to Prompt and the object hasn't already been saved before the CloseWindow action is carried out, a dialog box prompts the user to save the object before the macro closes it. If you have set the Warnings On argument of the SetWarnings action to No, the dialog box is not displayed and the object is automatically saved.

To run the CloseWindow action in a Visual Basic for Applications (VBA) module, use the CloseWindow method of the DoCmd object.