Okay lets say I load a listview of items in a .text file with a string split.

Eg in txt file:

word1 - word2

so listview1 would be word 1
and listview2 would be word2

Then if it fails to sign in to the account it adds the data to text1 and text2.

So text1 becomes word1 and text2 becomes word2.

How do i then transfer text1.text to listview3?

ive tried:

Code:
ListView3.ListItems.Add , Text1.Text
Code:
ListView3.ListItems.Add (Text1.Text)
Cheers (H) Ben