I have a datagridview and I can add a selected item from the datagridview to a listview by double click the grid.
This does work, but I want to check if the item I try to add does already exists in the listview.
I have the following code, but this doesn't work:
Please help.Code:Private Sub DataGridViewX1_DoubleClick(sender As System.Object, e As System.EventArgs) Handles DataGridViewX1.DoubleClick Dim lvItem As ListViewItem = ListView1.FindItemWithText(DataGridViewX1.SelectedCells(1).Value.ToString, True, 0) If (lvItem IsNot Nothing) Then Dim lvi As New ListViewItem lvi.Text = DataGridViewX1.SelectedCells(1).Value.ToString lvi.SubItems.Add(DataGridViewX1.SelectedCells(6).Value.ToString) ListView1.Items.Add(lvi) If ListView1.Items.Count > 0 Then Timer1.Start() ListView1.Enabled = True PrintSonglistButton.Enabled = True ClearAllButton.Enabled = True ClearSelectedButton.Enabled = True linesModified = True End If Else MessageBox.Show("Title already exists in the songlist!") End If End Sub


LinkBack URL
About LinkBacks




Reply With Quote




Bookmarks