Coding
How to delete buttons and text boxes in c# forms? i have tried so much and i have no idea why it isn’t working (screenshot of one of the things i’ve tried (also tried var instead of button))
You got to loop through the controls in your form and then when you find the right one you can remove it. (foreach control in this. Controls) You probably also need to redraw the parent Read more…