Dataviewgrid : different cell editors in the same column.

  • Thread starter Thread starter John
  • Start date Start date
J

John

Can anyone give me hints on how to do this? I need to have a single column
in a dataviewgrid whose cells can be set to either a combo box, a text edit
or a check box, different for each row of the grid.
 
John said:
Can anyone give me hints on how to do this? I need to have a single column
in a dataviewgrid whose cells can be set to either a combo box, a text
edit or a check box, different for each row of the grid.

If anyone cares, the solution is to create a new DataGridView<whatever>Cell
for each row, and assign it directly to the cell, allowing one column to
contain a mixture of any sort of cell editor type.
 
Back
Top