0
2

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 1 year has passed since last update.

AccessのVBAでフォームを閉じたらAccessファイルも閉じる(キー操作でアプリケーション終了)

Last updated at Posted at 2020-11-09

やり方

フォームに読み込み解除時のイベントを登録。

image.png

読み込み解除時のイベントコード
Private Sub Form_Unload(Cancel As Integer)
    Application.Quit
End Sub

いちいちマウスで右上の×ボタン押さなくても Command + W でフォームを閉じると同時にファイルも閉じられる。

だが…。これだとフォームを閉じたり、 デザインモードで開いた時問答無用でファイルが閉じてしまいます

フォーム自体を編集したい場合は開発者モードで開く必要が出ます。
(開発者モードで開く = Shift + ダブルクリックでファイル開く)

若干改良版

読み込み解除時のイベントコード
Private Sub Form_Unload(Cancel As Integer)
    If MsgBox("ファイル閉じるのん?", vbYesNo + vbDefaultButton1, "確認") = vbYes Then
        Application.Quit
        Exit Sub
    End If
End Sub

デフォルトの選択肢がYesなので、通常使う時はCommand + W ⇒ Enterのキーボード操作だけでファイルを閉じられます。
フォームをデザインモードで変更したい時はダイアログでいいえを選択すればOK。

バージョン

Windows 10 Pro 21H2 OSビルド 19044.1865
Microsoft Access for Microsoft 365 MSO (バージョン 2207 ビルド 16.0.15427.20166) 32 ビット

0
2
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
2

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?