We develope Software in Microsoft Visual Studio 2010 (VB.NET). The Reports we create with Crystal Reports v10 (we also tried the newest Version v11). We use the 'CRforVS_13_0_5' to call the report in VB.NET.
The report that doesn't function correctly includes a textbox with the option 'suppress embedded field blank lines'. In this textbox are a few database-fields. If the report is generated as preview in CRv10 the result is correct. But if the report is generated with the CRRuntime_13_0_5 the lines, where the last field is nothing(NULL) or empty, will be suppressed too. In VB6 (with his CR-Runtime) there was no difference between the preview in CRv10 and the called report.
Example:
Fields: Value:
{Name}: 'name'
{Prename}: DB-Null
{Street}: 'street'
{Street-Number}: DB-Null
{City}: 'city'
| Textbox (Definition): |
|---|
{Name} {Prename} {Street} {Street-Number} {City} |
| Result CRv10 preview |
|---|
name street city |
| Result CRRuntime |
|---|
| city |
Is there a solution to get the same result in CR-Runtime as in the preview of CRv10?
Thanks.