Ggvb
  • Ggvb
  • Member Topic Starter
2018-06-12T18:52:48Z
need your help again ..

How can you later set the etype of a column.
Without add? or column property
(after filling the igrid)
.eType = igCellCombo
.sCtrlKey =?


Thanky you for the help

Kind regards

Georg
Igor/10Tec
2018-06-13T05:31:33Z
If I understand your question correctly, you need something like this:

For iRow = 1 to iGrid1.RowCount
   iGrid1.CellType(iRow, <your_column>) = igCellCombo
   iGrid1.CellCtrlKey(iRow, <your_column>) = <combo_key>
Next