did you already inserted an item to other coulumns? I guess List.Items(currentTimer - 1).SubItems.Add("<") were added to column1.. only a guess :) Read More
Which index is it complaining about? You have two - currentTimer - 1 - List.Items(currentTimer - 1).SubItems.Count Try replacing the code with Debug.WriteLine("index 1 = " & (CurrentTimes - 1).ToString) Debug.WriteLine("index 2 = " & (List.Items(currentTimer - 1).SubItems.Count).ToString) Debug.WriteLine("# items = " & List.Items.Count) List.Items(currentTimer - 1).SubItems(List.Items(currentTimer - 1).SubItems.Count).Text = … Read More
List.Items(currentTimer - 1).SubItems(List.Items(currentTimer - 1).SubItems.Count).Text = "" Will probably not work because Count will always return a number whic is one more than the highest valid index. Iitems and SubItems are zero-relative indexed so if you have 5 SubItems then then Count = 5 and the rightmost SubIitem has an … Read More