Page 1 of 1

THighLowSeries and seriesText ?

Posted: Fri Apr 01, 2005 2:10 pm
by 8441848
Hello,

Is it possible to use seriesText source with THighLowSeries?
I try:

Code: Select all

 with seriestextsource6 do
 begin
  fields.clear;
  headerlines := 2;
  fieldseparator := ';';
  decimalseparator := '.';
  filename := 'c:\WXT510\vent\' + jour +'.R1';
  addfield('text',1);
  addfield('High',6);
  addfield('Low',7);
  addfield('High',6);
  series := series17;
  active := true;
 end;
but it didin't work... Is sombody know that?

Best regards
cyril

Posted: Mon Apr 04, 2005 10:53 am
by Pep
Hi cyril,

it works fine here, I think the problem is in the repeated line :
addfield('High',6);
It should be removed.