where are you assigning the menu better to do it a desgin time or in the constructor of the form, this works for me.



Code:
		public MainForm()
		{
			//
			// The InitializeComponent() call is required for Windows Forms designer support.
			//
			InitializeComponent();
			this.listView1.ContextMenuStrip = this.contextMenuStrip1;
			//
			// TODO: Add constructor code after the InitializeComponent() call.
			//
		}