If you change the NAME PROPERTY of a menu item (under design grouping in the properties) the New Name will NOT appear when you double click the menu item to move the the click event. It still displays the original name as the event.
IE: I created mnuClose as the item name and double clicked it. I saw the following:
Sub MnuCloseClick(ByVal sender As Object, ByVal e As EventArgs)
End Sub
I then renamed the item to MnuClear and when I double clicked I still got the MnuCloseClick name. I tried deleting the event but was recreated each time.
Joe