コンボボックスに多数の値が入力されている場合でも、コンボボックスにはデフォルトで空白のフィールドが表示されます
ColumnSpeed.DataSource = speedList;
ColumnSpeed.ValueType = typeof(string);
次のことも試しましたが、空白のテキストが表示されます。
foreach (DataGridViewRow row in myDataGridView.Rows)
{
DataGridViewComboBoxCell cell = row.Cells[ColumnSpeed.Index] as DataGridViewComboBoxCell;
if (cell != null)
{
cell.DataSource = speedList;
cell.Value = cell.Items[0].ToString();
}
}