Was just reading the ref'd thread on MouseMove event for Active X buttons and tried it but seem to be only functional in one of the two "associated" buttons. (ie when they are in the same table cell in a Word userform)
What I mean is that when one is clicked the other un-clicks.
suspect that may be the reason why the status bar does not update when mouse is moved/clecked elsewhere.
Any suggestions on how to fix that?
Here is my code:
What I mean is that when one is clicked the other un-clicks.
suspect that may be the reason why the status bar does not update when mouse is moved/clecked elsewhere.
Any suggestions on how to fix that?
Here is my code:
Code:
Private Sub OptionButtonClass1_MouseMove(ByVal Button As Integer, ByVal Shift As Integer, ByVal X As Single, ByVal Y As Single)
StatusBar = "Check Here if the CN causes the partnumber to change"
End Sub
Private Sub OptionButtonClass2__MouseMove(ByVal Button As Integer, ByVal Shift As Integer, ByVal X As Single, ByVal Y As Single)
StatusBar = "Check Here if the Part or Document revision will be incremented only"
End Sub