私は試した:
- If ListBox1.Items.Contains("myword") Then
- If ListBox1.SelectedIndex = ListBox1.Items.IndexOf("myword") Then
- If ListBox1.SelectedItems.Item("myword") Then
しかし効果なし。
私は試した:
しかし効果なし。
このようなことを試してください。listbox.itemsプロパティはListBox.ObjectCollectionです:
For Each i As Object In ListBox1.SelectedItems
If CStr(i).Contains("myword") Then
BackColor = Color.Blue ' Do your logic here, I just used setting the BackColor for a test
End If
Next