I have two combo box, one with a start date, and the other is ending date.
I want to do if(combobox1 > combobox2)
check if the start date is greater than the ending date MessageBox.Show("You have chosen a great starting date of the final");
How can this be done?
Just access both values of your ComboBoxes and then you can use DateTime.Compare method: https://msdn.microsoft.com/en-us/library/system.datetime.compare(v=vs.110).aspx