获取表单控件的相关标签的标题 - Access 2007

时间:2010-07-10 13:18:23

标签: ms-access ms-access-2007

正如标题所示,我正在尝试获取表单控件的相关标签的标题 例如:

Dim ctl As Control
Dim errMess As String
errMess = ""
For Each ctl In frm
    With ctl
            If (ctl.Tag = "*") Then
        errMess = errMess & ctl.Caption & vbNewLine        
            End If
        End If
   End With
Next ctl 

显然“ctl.Caption”不起作用,我只是不确定如何引用它。

任何帮助表示感谢。

干杯

诺尔

1 个答案:

答案 0 :(得分:1)

发现答案是使用ctl.Controls.Item(0).Caption

Dim ctl As Control
Dim errMess As String
errMess = ""
For Each ctl In frm
    With ctl
            If (ctl.Tag = "*") Then
        errMess = errMess & ctl.Controls.Item(0).Caption & vbNewLine        
            End If
        End If
   End With
Next ctl