Hi -

8.1 RDS run from DF 20.1

I'm passing a Binary field to the report, but it doesn't display anything. This is a simple test report - but I guess I'm missing something.

In the RV:

Code:
                Case (iSibling = -1 and iLevel = 0 and sTableName = "oImageTest")
                    // ToDo:  Modify the sample code to fill the RDS array for the table oImageTest
                    // The first dimension identifies the row, the second dimension identifies the column.
                    Clear HLDImageData
                    Repeat
                        Find GT HLDImageData by 1
                        If (not(Found)) Break
                        Move HLDImageData.ID to vData[iRow][0] // Name: ID, Length: 11, Datatype: Integer
                        Move HLDImageData.vData to vData[iRow][1] // Name: Image, Length: 0, Datatype: Binary
                        Increment iRow
                    Loop
2 fields in the RDS definition: ID is an integer, Image is Binary. In the DB ID is an integer & vData is VarBinary(Max).

Any help appreciated!