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.

link|improve this question

3  
Are all rows and columns fixed? Why? Normally you don't want fixed rows and columns to be selectable. – Smasher Jun 6 '11 at 8:46
The term I used fixed in not in really fixed. At time of designing I gave as fixed but run time it will get populated. So don't go with that word but just the problem is with not selectable... – GAPS Jun 6 '11 at 12:20
Can you clarify that? What's the value of FixedCols and FixedRows? Please also show the code to populate the string grid. You might try to rework the question to make your problem clearer. – Smasher Jun 6 '11 at 13:34
Got the answer, problem with form.dfm setting – GAPS Jun 9 '11 at 14:55
feedback

2 Answers

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?

link|improve this answer
It should be in comment section, not in answer section... – GAPS Jun 6 '11 at 12:17
feedback

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.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.