This example displays and removes a check mark next to a menu item. To try this example, create a form with a Menu control that has one menu item (set both the Caption and Name properties to MyMenuItem), and then press F5 and choose the menu item.
Private Sub MyMenuItem_Click ()
' Turn check mark on menu item on and off.
MyMenuItem.Checked = Not MyMenuItem.Checked
End Sub