0

在 MS ACCESS 中,我找不到搜索对象的方法。我想为 MSAccess 2002 编写一个脚本或找到一个插件来通过他的属性值来查找对象

我正在对 ACCESS 中的一个大型应用程序进行维护,并且我正在处理很多事情以通过该应用程序找到正确的元素。

在 Visual Fox PRO 中,您可以像任何常规表一样使用 USE 语句打开窗口窗体并进行搜索查询。

先谢谢各位了。

4

2 回答 2

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
于 2013-06-27T02:24:56.697 回答
0

我为 Access 找到了几个出色的“查找”加载项。

http://www.skrol29.com/us/vtools.php

安德鲁 推荐这个:http : //www.rickworld.com/products.html

于 2013-06-27T17:56:33.823 回答