|
The number of rows in the StringGrid is
StringGrid-> RowCount + = 1;
Dynamically added. In the process of adding, I want to focus on the last added line, roughly like the one in ListView:
ListView1-> Items-> Item [ListView1-> Items-> Count-1]-> MakeVisible (true);
That is, the data of the last row has the focus of StringGrid, and the vertical scroll bar of StringGrid is at the bottom of the table. |
|