crystalreport85
Programmer
I get error 'A Cross-tab row has been specified on a non-recurring field' when add the following code to one of the row field
Local StringVar sWinNo := Trim(Mid({Ord_Cfgt.Ship_Via_Name},11,10)) ;
WhilePrintingRecords;
Shared StringVar Array ArrWinNo;
If UBound(ArrWinNo) = 1 And Minimum(ArrWinNo) = "" then
ReDim ArrWinNo[1]
else
ReDim Preserve ArrWinNo[UBound(ArrWinNo) + 1];
ArrWinNo[UBound(ArrWinNo)] := sWinNo;
What could be the problem ?
Thank you
Local StringVar sWinNo := Trim(Mid({Ord_Cfgt.Ship_Via_Name},11,10)) ;
WhilePrintingRecords;
Shared StringVar Array ArrWinNo;
If UBound(ArrWinNo) = 1 And Minimum(ArrWinNo) = "" then
ReDim ArrWinNo[1]
else
ReDim Preserve ArrWinNo[UBound(ArrWinNo) + 1];
ArrWinNo[UBound(ArrWinNo)] := sWinNo;
What could be the problem ?
Thank you