38 | コントロール系 - 標題に特定の文字列を含むラベルコントロールを収集する | ||
カレントデータベース内にあるすべてのフォームとその中のラベルコントロールを探索し、標題プロパティに特定の文字列を含むコントロールの一覧を収集します。
Sub Sample_4_13() '標題に特定の文字列を含むラベルコントロールを収集する Dim dbs As Database Dim ctn As Container Dim doc As Document Dim ctl As Control Dim strFormName As String Dim strFind As String strFind = "番号" Set dbs = CurrentDb Set ctn = dbs.Containers!Forms For Each doc In ctn.Documents strFormName = doc.Name DoCmd.OpenForm strFormName, acDesign For Each ctl In Forms(strFormName).Controls With ctl If .ControlType = acLabel Then If InStr(.Caption, strFind) > 0 Then Debug.Print strFormName, Debug.Print .Name, Debug.Print .Caption End If End If End With Next ctl DoCmd.Close acForm, strFormName, acSaveNo Next doc End Sub 実行例:
|
|||
|
Copyright © T'sWare All rights reserved |