Hej, Dropdownbox med värden till DataGridView ???
Har denna koden:
if(type == true)
{
DataGridViewComboBoxCell comboCell = new DataGridViewComboBoxCell();
comboCell.Items.Add("true");
comboCell.Items.Add("false");
comboCell.MaxDropDownItems = 2;
DataGridViewRow heterow = new DataGridViewRow();
heterow.CreateCells(this._gridView);
heterow.Cells.RemoveAt(Context.VALUE_ROW);
heterow.Cells.Insert(Context.VALUE_ROW, comboCell);
rowIndex = this._gridView.Rows.Add(heterow);
för att lägga till en comboBox i en cell om typen är sann annars kommer den köra med default dvs textbox. När jag kör allt fungerar det kanon, enda problemet är att min comboBox får inte de värden
true samt false som jag lagt till i itmes, den är tom ?? why?
Mvh Johan