搜索时选择DataGridView行

时间:2015-08-24 13:33:30

标签: powershell search datagridview

我在搜索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

1 个答案:

答案 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将所选行设置为显示的最顶行。