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).
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top