Posted 19 August 2020, 4:50 am EST
This code works fine:
Dim comboType = New ComboBoxCellType()
FpSpread1.ActiveSheet.ActiveCell.CellType = comboType
comboType.Items = New String() {“Alpha”, “Bravo”, “Charley”}
but when I try to add a value to the ComboBox-Items the items will not be appended:
comboType.Items.Append(“new value”)
How can I append items to a ComboBoxCellType?