Enabling/Disabling command buttons of data entry form

Fallen

New member
Local time
Today, 05:54
Joined
Dec 8, 2012
Messages
5
Hello,

I am trying to enable/disable certain command buttons on my data entry form when I perform an operation such as edit, save, add, etc. Does anyone have any idea how this should be coded.

Thanks
 
Try the following;
Code:
Me.YourCommandButton Name.Enabled = False
Use True to re-enable it.
 

Users who are viewing this thread

Back
Top Bottom