Is there a way to freeze a particular column so that when user scrolls horizontally, all the other colomns will be moved except the one that is freezed.
I checked the property Grid1.DisplayLayout.Bands(0).Columns(1).Header.Fixed = True.
But it didn't work.
Thanks,
Sindhu
I got the answer.
Grid1.DisplayLayout.UseFixedHeaders = True
Grid1.DisplayLayout.Bands(0).Columns(1).Header.Fixed = True
Setting UseFixedHeaders worked for me.
Thanks,Sindhu