Visual Basic, .NET, ASP, VBScript
 

   
   
     

Форум - .NET

Страница: 1 |

 

  Вопрос: Помогите с проверкой Добавлено: 28.12.08 13:09  

Автор вопроса:  van-lamer
Есть 2 lisview'a в 1-содержится список процессов 2-пустой
при нажатии на кнопку во 2ой listview заносятся все процессы выделенные в первом listview галочками
код
      
Dim item As ListViewItem
Dim checkedItems As ListView.CheckedListViewItemCollection=lvwProc.CheckedItems
For Each item In checkedItems
lvwBlack.Items.Add(item.Text)
Next

Как сделать проверку на то что если о втором listview уже есть такой процесс то не добавлять его туда

Ответить

  Ответы Всего ответов: 3  

Номер ответа: 1
Автор ответа:
 



Администратор

ICQ: 278109632 

Вопросов: 42
Ответов: 3949
 Web-сайт: domkratt.com
 Профиль | | #1
Добавлено: 28.12.08 14:03
Такой же цикл внутри, только для всех элементов второго листа. Если совпадение, то не добавляем)

Ответить

Номер ответа: 2
Автор ответа:
 van-lamer



Вопросов: 28
Ответов: 25
 Профиль | | #2 Добавлено: 28.12.08 14:55
Не получается! Хоть прммерно покажите!

Ответить

Номер ответа: 3
Автор ответа:
 EROS



Вопросов: 58
Ответов: 4255
 Профиль | | #3 Добавлено: 28.12.08 18:17
Выбирай любой из способов..

public System.Windows.Forms.ListViewItem FindItemWithText(string text)
    Member of System.Windows.Forms.ListView

Summary:
Finds the first System.Windows.Forms.ListViewItem that begins with the specified text value.


Parameters:
text: The text to search for.


Return Values:
The first System.Windows.Forms.ListViewItem that begins with the specified text value.


public virtual bool ContainsKey(string key)
    Member of System.Windows.Forms.ListView.ListViewItemCollection

Summary:
Determines whether the collection contains an item with the specified key.


Parameters:
key: The name of the item to search for.


Return Values:
true to indicate the collection contains an item with the specified key; otherwise, false


public virtual int IndexOfKey(string key)
    Member of System.Windows.Forms.ListView.ListViewItemCollection

Summary:
Retrieves the index of the item with the specified key.


Parameters:
key: The name of the item to find in the collection.


Return Values:
The zero-based index of the first occurrence of the item with the specified key, if found; otherwise, -1.

Ответить

Страница: 1 |

Поиск по форуму



© Copyright 2002-2011 VBNet.RU | Пишите нам