Coding Menu Items Check/Uncheck
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