Attachment 90543
I provide data in to vb code through xml as follows
<?xml version="1.0" encoding="ISO-8859-1"?>
<Report>
<Configuration>
<Printer>Default</Printer>
<Tray>Default</Tray>
<ShowPreview>true</ShowPreview>
<Copies>1</Copies>
<PDFFile></PDFFile>
</Configuration>
<Tables>
<MainTable>
<Row>
<Field_0>
<FieldName>ColumnTwo</FieldName>
<Data>wwwwww.............(26000 charactes)</Data>
</Field_0>
<Field_1>
<FieldName>ColumnTwo3</FieldName>
<Data>....</Data>
</Field_1>
.
.
.
.
.
</Row>
</MainTable>
</Tables>
</Report>
whenever i provide the xml large number of data (more than 26000 characters) i am getting error Method 'AddRows' of object 'ICrystalDataObject' failed
does any one know why this happens. is there a particular data length for a row or a field of crystal report.
I provide data in to vb code through xml as follows
<?xml version="1.0" encoding="ISO-8859-1"?>
<Report>
<Configuration>
<Printer>Default</Printer>
<Tray>Default</Tray>
<ShowPreview>true</ShowPreview>
<Copies>1</Copies>
<PDFFile></PDFFile>
</Configuration>
<Tables>
<MainTable>
<Row>
<Field_0>
<FieldName>ColumnTwo</FieldName>
<Data>wwwwww.............(26000 charactes)</Data>
</Field_0>
<Field_1>
<FieldName>ColumnTwo3</FieldName>
<Data>....</Data>
</Field_1>
.
.
.
.
.
</Row>
</MainTable>
</Tables>
</Report>
whenever i provide the xml large number of data (more than 26000 characters) i am getting error Method 'AddRows' of object 'ICrystalDataObject' failed
does any one know why this happens. is there a particular data length for a row or a field of crystal report.