locking all controls on a form?

  • Thread starter Thread starter Jerome
  • Start date Start date
J

Jerome

Hi, I want to add a button to my form which would allow me to enable or
disable all the text controls, dropdown lists, etc on my form.

What is the best way to do that?

Thanks.
 
Jerome said:
Hi, I want to add a button to my form which would allow me to enable or
disable all the text controls, dropdown lists, etc on my form.

What is the best way to do that?

Thanks.

Me.AllowAdditions = Not Me.AllowAdditions
Me.AllowEdits = Not Me.AllowEdits
Me.AllowDeletions = Not Me.AllowDeletions
 
Back
Top