我有一个带有 2 列的 MSFlexGrid 控件,我的所有数据都显示在这个网格上。当我单击“添加”按钮时,我添加了一个新行,然后选择了我的新行。
问题是所有行都被选中,我只需要选择我的新行。
这是我的代码:
Private Sub Add_Click()
FGrid.Rows = FGrid.Rows + 1
FGrid.RowSel = FGrid.Rows - 1
FGrid.ColSel = 0
If FGrid.Rows > 1 Then ' > 10
FGrid.TopRow = FGrid.Rows - 1
Else
FGrid.TopRow = 1
End If
FGrid.TextMatrix(FGrid.RowSel, 0) = Format(Date, "DD/MM/YYYY")
FGrid.SetFocus
End Sub