Status bar panel clicked on.

  • Thread starter Thread starter Philip Tepedino
  • Start date Start date
P

Philip Tepedino

Is there a way to find out what panel is was clicked on a status bar? (maybe
get the name of the panel object?)

thanks,
Philip Tepedino
 
Philip Tepedino said:
Is there a way to find out what panel is was clicked on a status bar? (maybe
get the name of the panel object?)

Untested:

\\\
Private Sub StatusBar1_PanelClick( _
ByVal sender As System.Object, _
ByVal e As System.Windows.Forms.StatusBarPanelClickEventArgs _
) Handles StatusBar1.PanelClick
MsgBox(e.StatusBarPanel.Text)
End Sub
///
 
Back
Top