been trying to do this a couple different ways, this is my latest:
Dim i As Integer = 0
Dim ControlCount As Integer = SearchResults.Controls.Count
Do Until i > ControlCount
SearchResults.Controls.RemoveByKey(i)
i += 1
Loop
Search Results being the name of the flow layout panel!
any ideas of how to do this? i simply want to remove everything that is currently in the panel!
ive also tried things like searchresults.items.clear aswell but to no avail