Is there a wat to change the index of a UltraGrid column?
What i'm doing for the other properties is to iterate through the columns of the first row and making the changes, but the index is readonly.
Thanks
Answer found!I'll use the swap indicating the new index of each column.
dr.Column.Swap(dgvTarefasDia.Rows(0).Cells(5).Column)
You can also set the column's Header.VisiblePosition property to move the column to the desired position.