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 3 years have passed since last update.

access2000の作法 その29

0
Posted at

概要

access2000の作法、調べてみた。
練習問題、やってみた。

練習問題

セキュリティの警告、「コンテンツの有効をクリック」を促せ。

方針

オープニングフォームを作る

オープニングフォームを作る手順。

  • 作成 フォームデザインを開く
  • ラベルを設置
「セキュリティの警告」が表示されている場合は、「コンテンツの有効化」をクリックして許可して下さい。
  • プロパティシートを開く
  • イベントを開く
  • ロード時、コードビルダーを開く
Private Sub Form_Load()
	DoCmd.Close acForm, Me.Name
	DoCmd.OpenForm "menu"
End Sub
  • フォームを閉じる
  • openingで保存する
  • Accessのオプション画面を開き、「現在のデータベース」を選択します。
  • Access起動時に開くフォームを指定するため、「フォームの表示」に「opening」を設定します。

以上。

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?