我在搜索DataGridView。 TextChanged事件可以查找数据,但光标不会跳转到找到的行/列。
这是我正在使用的powershell代码:
For Each ws In Sheets(Array("List"))
lastRow = ws.Range("A" & Rows.Count).End(xlUp).row
For i = 1 To lastRow
If ws.Cells(i, 1).Text = "#N/V" Then
ws.Cells(i).Delete
End If
Next i
Next
答案 0 :(得分:0)
替换以下行:
<li data-ng-repeat="firstName in names"> {{firstName}} </li>
以下内容:
$datagridview1.CurrentRow.Index = $i
$datagridview1.CurrentRow = $datagridview1.Rows[$i].Cells[0]
$datagridview1.SelectedRows[$i]
设置$datagridview1.CurrentCell = $datagridview1.Rows[$i].Cells['Name']
$datagridview1.FirstDisplayedScrollingRowIndex = $i
突出显示正确的单元格,并设置CurrentCell
将所选行设置为显示的最顶行。