BUG in preview

DomiDomi Belgium
edited 4:44PM in FastReport .NET
Hi,

I have the following bug in preview a report :

Comments

  • edited 4:44PM
    google topic about MSChart (Microsoft Chart), learn how to use it
  • DomiDomi Belgium
    edited April 2018

    It doesn't use any Chart, that's why I have posted this problem.

    here is the report.

    Sincerly,
    Domi

  • edited 4:44PM
    you didn't attach the msaccess database...

    you must debug it from designer.exe, open the frx file, at report start event, you can set 'dummy parameter value' with code.
    for instance: Report.SetParameterValue("@appli.copyright", "Test");

    then run it, is it working? error?
  • DomiDomi Belgium
    edited 4:44PM
    Hi,

    I have put the code in the StartReport but it's never fired (MessageBox is never displayed) ! I have missed something maybe ?

  • edited 4:44PM
    open frx file with notepad, make sure that event is registered:

    <Report ScriptLanguage="CSharp" StartReportEvent="_StartReport">
  • DomiDomi Belgium
    edited May 2018
    I had already checked that, of course :

  • DomiDomi Belgium
    edited 4:44PM
    Not yet solved

    here is the new report, can you indicate why the _StartReport & Page1_StartPage are never fired ? (if necessar, I can provide the .mdb but the problem occurs before)

    thanks in advance,
    Domi.

  • edited May 2018
    open frx file with notepad:

    1. DO NOT USE DOT SEPARATOR IN PARAMETER NAME, because dot separator is internally reserved by fastreport for [TABLENAME.FIELDNAME]

    change :
    @Appli.connstring to paramconnstring
    @Appli.copyright to paramcopyright
    @Societe.raisonsociale to paramraisonsociale
    @Societe.DateDebEx to paramDateDebEx
    @Societe.DateFinEx to paramDateFinEx

    or using underscore is fine too, @Appli_connstring, try it

    then make a correction to :
    - related textobject in the report
    - script for declaring dummy value

    2. LOOK AT PARAMETER SECTION
        <Parameter Name="@Appli.connstring" DataType="System.String">
          <Parameter Name="Parameter" DataType="System.String"/>
          <Parameter Name="Parameter1" DataType="System.String"/>
        </Parameter>
        <Parameter Name="@Societe.raisonsociale" DataType="System.String">
          <Parameter Name="Parameter" DataType="System.String"/>
        </Parameter>
    

    replace with :
    <Parameter Name="paramconnstring" DataType="System.String"/>
    <Parameter Name="paramraisonsociale" DataType="System.String"/>
  • DomiDomi Belgium
    edited May 2018
    Hi,

    thanks for your fast reply.

    I have made the requested modifications (and the methods Form1_Load and _StartReport are now reached) and I get my first error back :

    Exception in Chart handling
    Failed to compare two elements in the array
    ....

    although, I don't use any chart in the report (as you can see in the .fpx you have)

    Any idea ?
    Tkx,
    Domi.
  • edited May 2018
    I suspect 2 problems :

    1. open with notepad => relation between 2 tables : parent/child datasource IS NULL, here is the cause of error 'Failed to compare two elements in the array'

    Delete it :
        <Relation Name="Lign_Comptes" ParentDataSource="null" ChildDataSource="Comptes" ParentColumns="NUMC" ChildColumns="COMP" Enabled="true"/>
        <Relation Name="Comptes_Lign" ParentDataSource="Comptes" ChildDataSource="null" ParentColumns="COMP" ChildColumns="NUMC" Enabled="true"/>
    

    2. textobject with binary datasource, Cell33 is linked to field LETT => <Column Name="LETT" DataType="System.Byte"/>
    <TableCell Name="Cell33" Text="[Comptes.LETT]" VertAlign="Center" Font="Arial, 7pt"/>
    

Leave a Comment

Rich Text Editor. To edit a paragraph's style, hit tab to get to the paragraph menu. From there you will be able to pick one style. Nothing defaults to paragraph. An inline formatting menu will show up when you select text. Hit tab to get into that menu. Some elements, such as rich link embeds, images, loading indicators, and error messages may get inserted into the editor. You may navigate to these using the arrow keys inside of the editor and delete them with the delete or backspace key.