简体   繁体   English

Microsoft Access-遍历所有窗体和每个窗体上的控件

[英]Microsoft Access - Loop through all forms and controls on each form

Okay so when I press a specific button I want to loop through all forms, then find every control in each form with the tag 'TESTING'. 好的,所以当我按下特定按钮时,我想循环浏览所有表格,然后在每个表格中找到带有“测试”标签的控件。 If the tag = 'TESTING' then I want to change the caption of the object to 'abc123'. 如果标记=“测试”,那么我想将对象的标题更改为“ abc123”。

The only objects with the tag 'TESTING' will be labels, so they will have the caption property. 标签为“ TESTING”的唯一对象将是标签,因此它们将具有caption属性。

So far I have this as the function: 到目前为止,我将此作为函数:

Public Function changelabel()

On Error Resume Next
Dim obj As AccessObject, dbs As Object
Dim ctrl as Control

Set dbs = Application.CurrentProject

For Each obj In dbs.AllForms
DoCmd.OpenForm obj.Name, acDesign
    For Each ctrl In Me.Controls
        If ctrl.Tag = "TESTING" Then
        ctrl.Caption = "abc123"
        End If

        Next ctrl

Next obj

End Function

Then this as the button code: 然后将此作为按钮代码:

Public Sub TestButton_Click()
Call changelabel
End Sub

So it executes the first for loop and opens all the forms in design view correctly. 因此,它将执行第一个for循环,并在设计视图中正确打开所有表单。 The problem lies with the second for loop. 问题出在第二个for循环上。 None of the label captions that have the tag property as 'TESTING' are changed to 'abc123'. 标签属性为“ TESTING”的标签标题都不会更改为“ abc123”。

So what do I need to change to get the second for loop to work? 那么,我需要更改什么才能使第二个for循环起作用?

Something like this 像这样

Public Function changelabel()

Dim f As Form
Dim i As Integer
Dim c As Control

For i = 0 To CurrentProject.AllForms.Count - 1
    If Not CurrentProject.AllForms(i).IsLoaded Then
        DoCmd.OpenForm CurrentProject.AllForms(i).Name, acDesign
    End If
    Set f = Forms(i)

    For Each c In f.Controls
        If c.Tag = "TESTING" Then
            c.Caption = "TESTING"
        End If
    Next c
Next i


End Function

You'll need to add a bit of house-keeping to set the objects used to nothing etc.. 您需要添加一些整理工作,以将使用过的对象设置为空等。

    Public Sub GetForms()
    Dim oForm As Form
    Dim nItem As Long
    Dim bIsLoaded As Boolean
    For nItem = 0 To CurrentProject.AllForms.Count - 1
        bIsLoaded = CurrentProject.AllForms(nItem).IsLoaded
        If Not bIsLoaded Then
            On Error Resume Next
            DoCmd.OpenForm CurrentProject.AllForms(nItem).NAME, acDesign
        End If
        Set oForm = Forms(CurrentProject.AllForms(nItem).NAME)
        GetControls oForm
        If Not bIsLoaded Then
            On Error Resume Next
            DoCmd.Close acForm, oForm.NAME
        End If
    Next
End Sub

Sub GetControls(ByVal oForm As Form)
    Dim oCtrl As Control
    Dim cCtrlType, cCtrlCaption As String
    For Each oCtrl In oForm.Controls
        If oCtrl.ControlType = acSubform Then Call GetControls(oCtrl.Form)
        Select Case oCtrl.ControlType
            Case acLabel: cCtrlType = "label": cCtrlCaption = oCtrl.Caption
            Case acCommandButton: cCtrlType = "button": cCtrlCaption = oCtrl.Caption
            Case acTextBox: cCtrlType = "textbox": cCtrlCaption = oCtrl.Properties("DataSheetCaption")
            Case Else: cCtrlType = ""
        End Select
        If cCtrlType <> "" Then
            Debug.Print oForm.NAME
            Debug.Print oCtrl.NAME
            Debug.Print cCtrlType
            Debug.Print cCtrlCaption
        End If
    Next
End Sub

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM