I have added a dropdown column in DGridview but i am unable to generate event that should fire when any value from dropdown menu is selected.
Here is the code for adding column
DataGridViewComboBoxColumn com = new DataGridViewComboBoxColumn();
com.HeaderText = "";
com.Items.Add( "Print Invoice");
com.Items.Add("Print Job Card");
com.Items.Add("Close Job Card");
createCol = false;
ViewActiveJobs.Columns.Add(com);
Try this.You have to create new Event handler for Combobox and call that event in
EditingControlShowing .