fastreport 中怎么使用数组

fastreport 中如何使用数组一直没有找到fastreport中如何使用数组的资料,哪位做过,如何使用frxuserdataset

fastreport 中如何使用数组
一直没有找到fastreport   中如何使用数组的资料,哪位做过,如何使用frxuserdataset   传递数组,可以在报表中显示出来,   50   分   !!!

[解决办法]
DEMO中有相关例子

frxUserDataSet.RangeEnd:=reCount;
frxUserDataSet.RangedEndCount:=High(YouArr)-Low(YouArr)+1;

在frxuserdataset的OnGetValue中写代码

if VarName = 'YouVarName ' then
Value:=YouArr[frxUserDataSet.RecNo];

基本上是这样