|
-
Aug 9th, 2000, 09:09 PM
#1
Thread Starter
Addicted Member
I am just finishing up one of my apps, and I have run into a problem. My application uses a help panel on the side, and there is a Label in it that changes whenever you move the mouse over the contents of the form. So, when you move the mouse over a certain Listbox, the help panel says "Shows the key actions you can change."
I do each of these through the MouseMove Sub, as follows:
Code:
Private Sub lstActions_MouseMove(Button As Integer, Shift As Integer, X As Single, Y As Single)
lblHelp.Caption = lstActions.Tag
End Sub
Then I set the .Tag of the Listbox to whatever I want the help to be.
Now, the problem:
There is a ComboBox on my form. Space does not permit me to use another Listbox, and ComboBoxes do not have a MouseMove Sub. What should I do? I have thought of using the Form's MouseMove Event to trigger whenever the mouse goes over that part of the form, but I can't make it work.
- Visual Basic 6.0
- Windows XP Home
-
Aug 9th, 2000, 11:04 PM
#2
Thread Starter
Addicted Member
I found a solution by placing a label behind the ComboBox and using that.
Thanks anyway.
- Visual Basic 6.0
- Windows XP Home
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|