how to make an auto scroll for a String Grid?
A property "Row" or "TopRow" does not help if a String Grid is invisible (e.g. on a hidden frame): no cells are selected. If to show it - it's cell becomes selected and "Row"/"TopRow" works.
Try. In a design time. A String Grid: 100 rows, visible:=false. On a button's click:
StringGrid1.Row := 99;
StringGrid1.Visible := true.
And return "visible" to true for the String Grid. Please see a difference.
Thanks!