0
0

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.

access2000の作法 その3

Last updated at Posted at 2022-05-26

概要

access2000の作法、調べてみた。

ウィンドウを重ねて表示する手順。

  • Accessのオプション画面を開き、「現在のデータベース」を選択します。
  • アプリケーション オプション』の領域の中ほどに『ドキュメント ウィンドウ オプション』の項目があるので、「ウィンドウを重ねて表示する(O)」のオプションボタンを選択します。

ナビゲーションウィンドウの非表示設定手順。

  • Accessのオプション画面を開き、「現在のデータベース」を選択します。
  • 「ナビゲーションウィンドウを表示する」のチェックを外します。

スタートアップフォームを回避する手順。(開発者モード)

  • database1.mdbを、shiftキーを押しながら、ダブルクリック。

リボンバーを非表示にする手順。

Private Sub Form_Load()
	DoCmd.ShowToolbar "Ribbon", acToolbarNo 
End Sub

以上。

0
0
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
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?