Form: Status bar text & mouse movement over menu item (resolved)
Hi!
Did somebody solve (in VB .NET) displaying text, in form's status bar, which explains in more details an menu option touched with mouse pointer?
Identical solution from VB 6 does not work?! I used API calls related to menus (user32.dll).
Thank you for any help.
23.03.2003. - In the meantime I found the possible solution:
Code:
Private Sub mnuItem1Sel (ByVal sender As Object, ByVal e As EventArgs) Handles MenuItem1.Select
Me.statusBarPanelName.Text = "Some text"
End Sub
So simple! :D