I just need a standard day of the week combobox drop down in 7 columns in my DataGridView for my users to selected days of week , my initial solution was to edit the columns of the DataGridView and set the ColumnType to DataGridViewComboBoxColumn and manually add the days of the week items to the collection.
I then ran it and the bound data autoselected the proper day and displayed it in the cell, clicking on the cell did nothing. Then I researched that and someone said you needed to change the ReadOnly from true to false, when I tried that it worked in the "Edit Columns" dialog and saved, "OK!!" I thought... Microsoft has its stuff together and I don't need to write code for this incredibly simple thing, but after running this the click on the drop downs in my grid STILL did nothing, then after I went back and checked my ReadOnly property only to find it had been reset back to True.
I have seven columns that accept day of the week data do I need to create a datasource with the days of the week in it and then bind each combobox? seems like an easy task made incredibly difficult.
Any help please