在MS ACCESS中,我找不到搜索对象的方法。 我想编写一个脚本或找到一个插件,以便MSAccess 2002通过其属性值
查找对象我正在为ACCESS中的一个巨大的应用程序做维护,我正在通过应用程序找到合适的元素。
在Visual Fox PRO中,您可以使用USE打开窗体窗体 语句,像任何常规表一样,并进行搜索查询。
先谢谢费拉斯。
答案 0 :(得分:2)
你想要这样的东西。
Function CaptionCheck(Capt As String) As String
Dim Ctl As Control
Dim Frm As Form
Set Frm = Forms("form1")
For Each Ctl In Frm.Controls
If Ctl.ControlType = 100 Then 'label
If Ctl.Caption = Capt Then
CaptionCheck = Ctl.Name
End If
End If
Next
End Function
答案 1 :(得分:0)
我发现了几个出色的“查找”加载项。