[Solved] how to disable and enable buttons in delphi
[ad_1] Set the Enabled property for the control of your choice. For example to disable button: Button1.Enabled := False; to enable: Button1.Enabled := True; 1 [ad_2] solved how to disable and enable buttons in delphi