How do I freeze a column from scrolling with the rest of the data. I want to display a grid with the last columns always visible. The rest of the data must scroll left or right without the last columns moving.
Thank you
You can do this with Fixed headers. Set UseFixedHeaders to true and then set the Fixed property on the column header(s) you want to fix. I would do all of this in the InitializeLayout event of the grid.
thanks