CodeItBetter Programming Another VB Programming Blog

How to display or hide status bar along with check mark in menu

Posted on January 4, 2009
1
2
3
4
5
6
7
'Forms - How to display or hide status bar along with check mark in menu
Private Sub mnuViewStatus_Click()
    ' First, add or remove the check sign.
    mnuViewStatus.Checked = Not mnuViewStatus.Checked
    ' Then make the status bar visible or not.
    staStatusBar.Visible = mnuViewStatus.Checked
End Sub
Filed under: Forms Leave a comment
Comments (0) Trackbacks (0)

No comments yet.


Leave a comment


 

No trackbacks yet.