Reputation: 2696
I am developing an windows form application.In that application i need to add a datagridview in side datagridview column.From bellow tutorial i made an dgvcolumn.
Now i need to merge multiple cells into one and want to split one cell into multiple cells. Can any one tell me how can i do this.
Upvotes: 0
Views: 1462
Reputation: 5719
If you want to merge 2 columns into 1 column .. create additional column in your table and you can split column value into that two columns.
If you want to show 2 columns into 1 column .. you can do value concatenating into 1 column (you can do this in cellformatting event) then you can hide the unnecessary column .
Upvotes: 1