[Solved] how to disable and enable buttons in delphi


Set the Enabled property for the control of your choice. For example to disable button:

Button1.Enabled := False;

to enable:

Button1.Enabled := True;

1

solved how to disable and enable buttons in delphi