Reputation: 7193
I am having a StringGrid in Delphi 5 of fixed rows and Fixed Cols. But at run mode I am not able to select any row or any cell.
How and what is the property that allow me to make String Row or cell selectable.
Upvotes: 3
Views: 2553
Reputation: 1725
Take a look at the TStringGrid.Options property at design time. These have not changed much over the years and they are nearly all set to False. particularly: goEditing, goRowSelect.
Upvotes: 1
Reputation: 16620
You cannot select fixed rows and columns and that is intended behaviour as this is normally not wanted. Is there any reason you have these rows and columns fixed?
Upvotes: 5