我正在使用
浏览表单上的控件For Each ctl In frm.Controls
在Access VBA中,并想检测控件是否为超链接。我想检测控件是否为超链接。我看不到与超链接匹配的ControlType。我假设这是一个具有其他属性的文本框。
有人可以指出我的正确方向吗?
提前谢谢
李
答案 0 :(得分:1)
尝试检查HyperLinkAddress属性的长度:
Dim c As Control
For Each c In Controls
If Len(c.HyperlinkAddress) > 0 Then
Debug.Print c.Name & " is a hyperlink (Address: " & c.HyperlinkAddress & ")"
Else
Debug.Print c.Name & " is not a hyperlink"
End If
Next