PawanS
PawanS

Reputation: 7193

Delphi, String Grid is not selectable, How to make it selectable to select Row or Col?

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

Answers (2)

Despatcher
Despatcher

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

jpfollenius
jpfollenius

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

Related Questions