The property to specify whether or not the user
can interact with a control.
Example: TextBox1.Enabled=False
means textBox1 is disabled and the user cannot type in anything
into the text box.
To enable it, set the property to true. i.e.
TextBox1.Enabled=True
|