i am currently using the following code so that when the cursor is over an object, it displays a description.
Private Sub txtSearchbox_MouseMove(Button As Integer, Shift As Integer, X As Single, Y As Single)
frmeObjectDescription.Visible = True
lblSearchCriteria.Visible = True
End Sub
however, i dont know how to make it so that if the mouse exits the vicinity of the object, then it invokes another description. ie, when it goes from txtsearchbox to the main body of the form.