Hi,
I have a couple of questions regarding DataGridView.
I have a DGV that is created at runtime, it has 3 columns. I would like to change the mouse cursor to HAND on only 1 of these columns, is this possible, if so how?
Also how can I stop the ColumnHeaders from being resized by the client? i.e. I have set the height to 25 and I wish it to remain at 25.
Any help would be appreciated.
Kind regards..,
MT ;)
Have figured out the header resizing part:-
dGV.ColumnHeadersHeightSizeMode = DataGridViewColumnHeadersHeightSizeMode.DisableResizing;
Still stuck on the Cursor part though.