I have TableLayoutPanel for dynamic creation of controls with AutoScroll = true. It\'s work fine when I add new controls. But when I remove and all controls are visible, ver
One of the easiest and funniest solution is to just disable and enable tableLayoutPanel1.AutoScroll
In your Deleting procedure code add at the end these codes :
tableLayoutPanel1.AutoScroll = False tableLayoutPanel1.AutoScroll = True