What i am trying to do is write to only column 5 of my listView with an if statement.
I am checking if a certain text appears in Googoel, then to put Yes in the rows that the text appears. If no then put No in the rows that the text does not appear.
Heres what I have but it keeps erroring out with InvalidArgument=Value of '24' is not valid for 'index'. Parameter name: index on the No portion in the else statement.:
string google2 = http.get("https://www.google.com/search?q=" + textBox1.Text + "");
string[] embedid = getBetweenAll(vid, "type='text/html' href='http://www.youtube.com/watch?v=", "&feature=youtube_gdata'/>");
for (int i = 0; i < embedid.Length; i++)
{
if (google2.Contains(embedid[i]))
{
listView1.Items[i].SubItems.Add("Yes");
}
else
{
listView1.Items[i].SubItems.Add("No");
}
}
