4

私は試した:

  1. If ListBox1.Items.Contains("myword") Then
  2. If ListBox1.SelectedIndex = ListBox1.Items.IndexOf("myword") Then
  3. If ListBox1.SelectedItems.Item("myword") Then

しかし効果なし。

4

1 に答える 1

2

このようなことを試してください。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
于 2012-11-14T01:32:15.987 に答える