33 | コントロール系 - テキストボックスの書式プロパティ値を収集する | ||
カレントデータベース内にあるすべてのフォームとその中のすべてのコントロールを探索し、テキストボックスコントロールであるものについて、その書式プロパティの値を収集します。
Sub Sample_4_08() 'テキストボックスの書式プロパティ値を収集する Dim dbs As Database Dim ctn As Container Dim doc As Document Dim ctl As Control 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 For Each ctl In Forms(strFormName).Controls With ctl If .ControlType = acTextBox Then If Len(.Format) > 0 Then Debug.Print .Name, Debug.Print .Format End If End If End With Next ctl Debug.Print "------------------" DoCmd.Close acForm, strFormName, acSaveNo Next doc End Sub 実行例:
|
|||
|
Copyright © T'sWare All rights reserved |