Cosa in che senso?
Qui il codice VB.NET per inserire righe nella listView

codice:
Da MSDN

Per aggiungere elementi a livello di codice 
Utilizzare il metodo Add della proprietà Items. 
' Visual Basic
' Adds a new item with ImageIndex 3
ListView1.Items.Add("List item text", 3)

// C#
// Adds a new item with ImageIndex 3
listView1.Items.Add("List item text", 3);

// C++
// Adds a new item with ImageIndex 3
listView1->Items->Add(S"List item text", 3);
Per rimuovere elementi a livello di codice 
Utilizzare il metodo Remove o Clear della proprietà Items. Il metodo RemoveAt rimuove un singolo elemento, mentre il metodo Clear rimuove tutti gli elementi dell'elenco. 
' Visual Basic
' Removes the first item in the list.
ListView1.Items.RemoveAt(0)
' Clears all items:
ListView1.Items.Clear()

// C#
// Removes the first item in the list.
listView1.Items.RemoveAt(0);
// Clears all the items.
listView1.Items.Clear();

// C++
// Removes the first item in the list.
listView1->Items->RemoveAt(0);
// Clears all the items.
listView1->Items->Clear();