在MS Access Form

时间:2019-06-26 15:24:22

标签: ms-access access-vba ms-access-forms

如何在ms访问报告中的复选框上悬停一个超链接?

If cc.ControlType = acCheckBox Then
    'cc.DisplayAsHyperlink = acDisplayAsHyperlinkAlways
    ' cc.IsHyperlink = True
    'cc.CursorOnHover = acCursorOnHoverHyperlinkHand
End If

但是我得到这个错误:

Object doesn't support this property or method

1 个答案:

答案 0 :(得分:0)

CursorOnHover是CommandButton对象的属性。一个简单的解决方法是在复选框后面放置一个透明按钮,然后将“属性表”中的CursorOnHover属性设置为acHyperlink。