1
Reply

Coding Menu Items Check/Uncheck

fbucci01

fbucci01

Jun 27 2004 10:43 PM
3.1k
How do I code a click event that removes the check when I click on the actual menu item? Setting a menu item to the "Checked" state is easy. You click it and it's checked, as follows: Private Sub DisplayMenuItem_Click(ByVal sender As Object, ByVal e As System.EventArgs) Handles DisplayMenuItem.Click DisplayMenuItem.Checked = True End Sub Using "DisplayMenuItem.Checked = False" removes it when added to the click event of another menu item click event. Thanks Frank

Answers (1)