Makkelijke manier om dingen te Enable en Disable
Code:Public Function Disable(System.Windows.Forms.Control _Object) _Object.Enabled = FalseEnd FunctionPublic Function Enable(System.Windows.Forms.Control _Object) _Object.Enabled = TrueEnd Function