


![=]](/forum/images/emotions/=].gif)
Thanks.Public Sub AddItem(ByVal name As String, ByVal game As String, ByVal coder As String, ByVal lastupdated As String, ByVal status As String)
Dim str(4) As String
Dim itm As ListViewItem
str(0) = name
str(1) = game
str(2) = coder
str(3) = lastupdated
str(4) = status
If str(4) = "1" Then
str(4) = "Patched"
Else
str(4) = "Working!"
End If
itm = New ListViewItem(str)
Main.ListView1.Items.Add(itm)
End Sub