Can somebody tell me what line i get this error " Argument 'Prompt' cannot be converted to type 'string' "
Try
If movieTxt.Text <> Nothing And ratingCmb.SelectedIndex <> 0 Then
For a = 0 To i
newItem.SubItems.Add(movieArray(a))
ListView1.Items.Add(ratingArray(a))
'// add Item to ListView.
movieTxt.Clear()
ratingCmb.SelectedIndex = 0
warnNoMovie.Text = ""
warnNoRating.Text = ""
MsgBox(movieArray)
Next
i += 1
End If
Catch err As Exception
MsgBox(err.Message)
End Try
Thank you in advance.