Hello all! Is it possible to have more that one .ttx in same report? When
I try to use 2 .ttx files I get error message "illegal data type
conversion."

Is there some syntax I need besides the Send AppendCDOData.


Integer eDestination
Variant[][10] vData
variant[][52] vData2
Forward Send OnInitializeReport hoReport
Set ComConvertDateTimeType Of hoReport To crConvertDateTimeToDate
Handle hoCDO
Send DoProcess to obuild_ttx //process to build both arrayas
Get CreateCDO of hoReport "wo_vendor.ttx" to hoCDO //first .ttx file
If hoCDO begin

Get pvLoadMe to vData

// Add rows to CDO object
Send AppendCDOData of hoReport hoCDO vData

End
Get CreateCDO of hoReport "wo_workorder.ttx" to hoCDO ///second .ttx
file
If hoCdo Begin
Get pvLoadMe to vData2
Send AppendCDOData of hoReport hoCDO vData2
End