Deberías verificar qué es lo que contienen las variables:
Código Delphi
[-]
var
...
Automatico, Manual: string;
begin
...
Ub:=ChangeFileExt(Application.ExeName,'.ini');
ini:=TIniFile.Create(Ub);
Automatico := ini.ReadString(CONFIG_SECTION, 'Automatico', STR_EMPTY);
Manual := ini.ReadString(CONFIG_SECTION, 'Manual', STR_EMPTY);
ShowMessage('UB: ' + ub);
ShowMessage('CONFIG_SECTION: ' + CONFIG_SECTION);
ShowMessage('STR_EMPTY: ' + STR_EMPTY);
ShowMessage('Automatico: ' + Automatico );
ShowMessage('Manual : ' + Manual);
if Automatico = 'Activado' then
btn_Backup.Enabled:=False
else
if Manual = 'Activado' then
btn_Backup.Enabled:=True;
...