R
Rob
Hello All,
Is there a way to enable and disable all controls on a form via VBA?
Thanks,
Rob
Is there a way to enable and disable all controls on a form via VBA?
Thanks,
Rob
For Each ctl in Me.Controls
On Error Resume Next
ctl.Enabled = True ' to enable
Err.Clear
Next ctl
are open, and set the ENABLED property of each of those forms to NO?