Home rbuser Comments
New Blog Posts: Merging Reports - Part 1 and Part 2

rbuser

About

Username
rbuser
Joined
Visits
1
Last Active
Roles
Member

Comments

  • I have found that it works with a variable on the main report that tarverses
    the data pipeline of the detail report, but this seems to go awry when the
    set of records crosses a page, so am still confused.


  • Thanks. It was a mismatch between a report and the program. The reports
    event handlers are stored the old way and one of them is not in the program.


  • Thanks Nard, I am going to debug the app with the RB units.

    On Thu, 6 Oct 2005 11:19:34 -0500, "Nard Moseley \(Digital

  • Nard, I did my homework :) and these are the results,

    try

    iSQLBuilder := TdaSQLBuilder.Crea…

  • Well, I thought that internally RB created another connection, so I
    was looking for it. Also I was looking for a class var which will do
    the trick, or some internal DataSet created 'on the fly' by RB.

    My TADOConnection.C…

  • Hello Nard,

    I found the way to change the value, but I'm still getting the
    infamous: "Invalid SQL Statement. Timeout Expired".

    This is part of the code:

    TdaADOSession.GetDefaultADOConnection.CommandTim…

  • Thanks, but apparently CommandTimeOut is not a public member of
    TADOConnection, I can't see it when I try a code completion.

    On Wed, 5 Oct 2005 10:11:13 -0500, "Nard Moseley \(Digital
  • Hi Nard,

    Thanks for your answer. Now I'm modifying the SQL externally and
    posting it into the SQLText, it works great when the query to execute
    lasts less than 30 seconds, but when I try to execute a long query
    (2min) I got…
  • Sorry Nard,

    We use D7, RB 7.04
    Thank you for responce,

    Michael


  • Don't know what it was but after putting ppCTDsgn at the very beginning of
    uses claes it started working ok.
  • I am sorry after I did the RegisterComponent

    RegisterComponentEditor(TppReportEX, TppReportComponentEditor);
    It still give me the same error any help

    Code looke like this now.

    RegisterComponentEditor(…
  • I have tried to reinstall RB and still have the same issues. I had an
    older version of RB when I installed TeeChart 7.04. I recently got the
    upgrade for RB 7.04. Any ideas? Thanks.


    Teechart
    to
    making
    do
  • Thanks for responding. I had an older version of RB when I installed
    TeeChart 7.04. I recently got the upgrade for RB7.04.


    Teechart
    to
    making
    do
    clause
    not
    drop

    Jim Shepard

  • And I also have report builder 3.

    Frank

    Delphi
    2005
    worked
    the
    first



    --- posted by geoForum on http://delphi.newswhat.com
    in TeeChart Comment by rbuser October 2005
  • Hi

    I am using Delphi 2005 update 3, and the TeeChart 4.04 the one that
    comes with delphi.

    ppTeeChart1.Chart.Page := 2;

    ppReport1.Print;

    This is the code I have but when ever I assigned the 2 in this …
    in TeeChart Comment by rbuser October 2005
  • I have delphi 2005 and TChart that comes with delphi, I added the units
    like you said to the uses section but I still have the same problem. I
    am using the dbchart, I tried casting, tried other methods but even
    dough i am assigning…
    in TeeChart Comment by rbuser October 2005
  • Mark Doel is rumoured to have said:


    TIFF comes in a number of variants, and it looks like GraphicEx does
    not contain code for handling the particular compression used by your
    client.

    Paint Shop Pro can show deta…
  • Just to complete the story

    The TIFF files I am trying to open are compressed as

    CCITT Group 4 (2d) Fax

    I cannot see this in the GraphicEx pas file.

    I will post something on their newsgroups to see if this …
  • Nico

    I thought you may say that as just spotted his reply...;-)

    I am not a great programmer just learning and so am asking have you any
    thing that does anything similar that I can use to understand and then have
    a go …
  • Nico

    1. You do not seem to have to do the registerclass thing. Just add the
    GraphicEx unit to a pas file in the project and it all works.
    2. I tried the register class thing (The class is TTIFFGraphic) the results
    are the s…
  • Nico

    Can you elaborate please..sorry for my misunderstanding (I am not a
    developer just dabble with report builder bits).

    What TIFFImage Component. I understand that we need to register a component
    so that we can use …
  • Nico

    Downloaded the library and just added it to a uses clause of my program (my
    End User Report main form from your demo) and now I can select from many
    more formats - great - thanks so far...

    When I use an image co…
  • Hi Nico,

    OK, I will try in this way
    Thank you very much

    Bye
    Nicola

    Nico Cizik (Digital Metaphors) ha scritto:
  • Hi Nico,

    This is the way I did
    I registered a custom autosearch dialog and used my custom autosearch
    fields (using this example as a guideline).
    But I cannot see how to control the tabsheet creation logic.
    It seems to…
  • Hi Nico,

    The example you are referring to is not an end-user one.
    I think this changes things..
    I tried with end user (with demos\end user databases\paradox\bde\enduser
    program) and if you try to define two autosearch fiel…
  • Nico

    Excuse my ignorance but can you briefly explain what a custom data view
    class is ? What functionality will this replace ?

    Cheers

    Mark


  • I missed putting in my problem...

    I have an exe that creates dynamic tables and fields when it runs. The
    number of tables, and the number of fields in them changes each time the
    program runs. At the end of the run, the tables …
  • I think I have worked it out...

    If I create a new report it all works well. Just the old reports that were
    saved when this properties of the report component were not set. Does that
    mean that I have to open all the reports and r…
  • What...!?!?!?!?



  • Ok i did what you said,

    i added a procedure called MyDetailBeforePrint(Sender: TObject) and added
    the code that i wanted the before print to do. When i call the
    createReportEvent, i create the report and then set the datapipe…