VB Code:
  1. Dim back As frmmain
  2.  
  3.     Dim lstItems As New ListViewItem
  4.     Private Sub Form3_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load
  5.  
  6.  
  7.         lstItems = ListView1.Items.Add(nam1)
  8.         lstItems.SubItems.Add(Mid(mem1, 1, 4))
  9.         lstItems.SubItems.Add(nuscheck)
  10.         lstItems.SubItems.Add("£" & tot1)
  11.  
  12.  
  13.  
  14.     End Sub
  15.  
  16.     Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click
  17.         mystore = ListView1.Text
  18.         TextBox1.Text = lstItems.Text
  19.     End Sub
  20. End Class

Hi i need to get this working asap:?/

i am using a listview and on form2 when data is added it will add itself to form3, but the button on form3 to go back will go back, but when i add new data it will not add to listview with current data:/ how can i get around htis...

my code is above