Hi,
does anybody know if there is any elegant way to manage Column indexes when option goColMoving is True ? I mean when user of app. at runtime will move columns, I need to know their positions.
Example:
Column 0: Index, Column1: Name, Column2: Date etc.
User will move columns and I cannot use Cells[x, y] nor Cols[x][y]
anymore because Columns are now elsewhere.
Or do I have to manage it myself via OnColRowMoved ? (Store positions of Columns in some extra array).
Thanks