I am trying to write to only one column of a listView (a subitem) but I want it so I can run two arrays through it not just one array.
When I try to do that it adds it to the next column in the listView (not the one i want it to write to).
For example this adds the array to different columns, not all of them to the same one:
string[] k = getBetweenAll(thepage, "<h4 style=\"padding:0 0 0 3px;\"><a href=\"", "\" target=\"_blank\">");
string[] q = getBetweenAll(thepage, "<h4><a href=\"", "\" target=\"_blank\">");
for (int i = 0; i < k.Length && i < listViewClickbank.Items.Count; i++)
{
listViewClickbank.Items[i].SubItems.Add(input + k[i]);
listViewClickbank.Items[i].SubItems.Add(input + q[i]);
}
Try this: