function BestFit(const AnArray: array of Double): Extended;
var n: Integer;
b,m: Double;
begin
n := Length(AnArray);
b := BestFitB(AnArray);
m := BestFitM(AnArray);
Result := b + (m * n);
end;
function BestFitLn(const AnArray: array of Double): Extended;
var n: Integer...
Has any one got the the OpenECry API to work with the delphi code sample they provide? It compiles with delphi7 and installs its vcl components just fine, but the only event that seem to work is the "logon complete" event. I can logon fine, but when I call the "procedure TOECClient.Subscribe" I...