If lstMaster.View = View.Details AndAlso lstMaster.Items.Count > 0 Then
Dim lvi As ListViewItem = lstMaster.FindItemWithText(txtSearchSR.Text, True, 0)
If lvi IsNot Nothing Then
MsgBox("found")
lvi.ListView.Items(0).Selected = True 'Does not seem to work...
End If
End If
我如何highliht找到列?
大衛
我看到你有一個「if語句」來決定是否應該突出顯示該項目。你是否檢查過lvi的值以查看FindItemWithText是否真的找到了一個項目。 –
gosh darn!只是意識到你有一個MsgBox(「發現」)..是顯示爲發現? –