Hi,
I'm using this code to remove controls from a panel...
...but somehow it doesn't remove all the controls at once, I have to run the code 3 times to remove them allvb.net Code:
For Each c As Control In Me.pnlDevices.Controls Me.pnlDevices.Controls.Remove(c) Next
(there is about 20 to 30 of them, mainly labels)...
I don't know if it matters, but the controls where added dynamically at startup...
