> I am trying to find a custom control that will update the status bar
> caption when the mouse passes over a button. I have been ordered to
> spend as little time as possible solving this, even if it means
> spending $10 to $20 for a shareware control
You can put some lines in the button's Mousemove event
Private Sub cmdButton_MouseMove(Button As Integer, Shift As Integer, X
As Single, Y As Single)
lblStatusBar = "Mouse is on the button"
end sub
You can also enable a timercontrol to remove the message after 1 s.