remove item of list of controls vb.net code example
Example: delete all controls from list of control vb.net
For Each control As Control In MyListOfControls
control.Dispose()
Next
For Each control As Control In MyListOfControls
control.Dispose()
Next