36 | コントロール系 - コントロールソースに特定の文字列を含むコントロールを収集する | ||
カレントデータベース内にあるすべてのフォームとその中のすべてのコントロールを探索し、コントロールソースプロパティに特定の文字列を含むコントロールの一覧を収集します。
これを応用することで、あるフィールドと関係のあるコントロールを探すことができます。
Sub Sample_4_11() 'コントロールソースに特定の文字列を含むコントロールを収集する Dim dbs As Database Dim ctn As Container Dim doc As Document Dim ctl As Control Dim strFormName As String Dim strCtlSource 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 On Error Resume Next strCtlSource = .ControlSource If Err.Number = 0 Then If InStr(strCtlSource, strFind) > 0 Then Debug.Print strFormName, Debug.Print .Name, Debug.Print strCtlSource End If End If On Error GoTo 0 End With Next ctl DoCmd.Close acForm, strFormName, acSaveNo Next doc End Sub 実行例:
|
|||
|
Copyright © T'sWare All rights reserved |