lock all controls

  • Thread starter Thread starter Ryan Moore
  • Start date Start date
R

Ryan Moore

is there any way to "lock" all controls? something like :

myControl.LockOthers();
myControl.ReleaseOthers();

thnx
 
What do you mean by "lock"? Lock them at design time so they don't get moved
(in which case there is a Locked property in VS) or locked so the user can't
use them (in which case there is an Enabled property which can be set to
false to disable the control) or make them read-only (in which case use the
ReadOnly property).
 
Back
Top