Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Wanet Telecoms Ltd on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

MouseMove event, does it need "Clear" of sorts??thread707-923645

Status
Not open for further replies.

YACHTIE

Technical User
Feb 17, 2004
77
CA
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:
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
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top