0 Members and 1 Guest are viewing this topic.
EQ := FindObject('prvEqualizer'); if EQ = nil then Exit; N := FindObject('BandSelect_Counter').Get('Position'); if N < 20 then begin V := Round(EQ.Get('BandValue' + IntToStr(N)) * 10) / 10 + 0.1; // <<<<< вот тут считывается 0 EQ.Set('BandValue' + IntToStr(N), V) end else begin V := Round(EQ.Get('PreampValue') * 10) / 10 + 0.1; // <<<<< вот тут считывается 0 EQ.Set('PreampValue', V) end; FindObject('BandDisplay').Set('Template', FloatToStr(V) + ' dB');