make all controls in an area not visable vb

The solution for “make all controls in an area not visable vb” can be found here. The following code will assist you in solving the problem.

Me.SuspendLayout()

For Each Control As Control In TempControls

Control.Visible = False

Next

Me.ResumeLayout()
TempControls = New List(Of Control)

Thank you for using DeclareCode; We hope you were able to resolve the issue.

More questions on [categories-list]

Similar Posts