vbams-accessms-access-forms

Display Hyperlink Hand Cursor for Check Box on MS Access Form


How do I make check boxes in an ms access report have a hyperlink hand on hover?

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

But I get this error:

Object doesn't support this property or method


Solution

  • CursorOnHover is a property for CommandButton objects. A simple work-around would be to place a transparent button behind your check boxes and set the CursorOnHover property to acHyperlink hand from the Property Sheet.