24 | フォーム系 - フォームの追加/削除/更新の許可の設定値を収集する | ||
カレントデータベース内にあるフォーム名の一覧とともに、それぞれのフォームの「追加の許可」、「削除の許可」、「更新の許可」の3つのプロパティの設定値を収集します。
Sub Sample_3_06() 'フォームの追加/削除/更新の許可の設定値を収集する Dim dbs As Database Dim ctn As Container Dim doc As Document Dim strFormName As String Set dbs = CurrentDb Set ctn = dbs.Containers!Forms For Each doc In ctn.Documents strFormName = doc.Name DoCmd.OpenForm strFormName, acDesign Debug.Print "■" & strFormName With Forms(strFormName) Debug.Print " 追加の許可:" & IIf(.AllowAdditions, "はい", "いいえ") Debug.Print " 削除の許可:" & IIf(.AllowDeletions, "はい", "いいえ") Debug.Print " 更新の許可:" & IIf(.AllowEdits, "はい", "いいえ") Debug.Print "------------------" End With DoCmd.Close acForm, strFormName, acSaveNo Next doc End Sub 実行例:
|
|||
|
Copyright © T'sWare All rights reserved |