| 
 PureBytes Links 
Trading Reference Links 
 | 
,
Should this work?  Note the argument in foo function is a numericref.
for i = 0 to 4 begin
  result = foo( array[i] );
  end;
Ok the above does not work for me, so how about this:
for i = 0 to 4 begin
  value3 = array[i];
  result = foo( value3 );
  array[i] = value3;
  end;
Still no cigar, Any ideas?
Regards,
Ernie
ebonugli@xxxxxxxx
 
 |