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

  • >Are you using a registered version of ReportBuilder and Delphi or is
    this an
    to
    however I
    Hi Nick, it is an application that has reportbuilder built into
    it 'SiteSafe' from BMS Solutions. I have been working throug…
  • Thanks Nico,

    Just wondering about the answer to this question though.


    Regards
    Charles

    --- posted by geoForum on http://delphi.newswhat.com
  • Two other things I am wondering about,

    Jpeg and Gifs are not supported within the image component. Is this going
    to change any time soon? Or is there a work around I have missed.

    Is it possible to create custom joins betwe…
  • Which Zebra printer?

    We have working on about 30 sites using RB 9 and both P420i and new P430i,
    and all work fine.

    We store the photos in the DB in JPEG format. We also check the the DBImage
    component on the report …
  • Nico,

    Thanks for your response.

    Before I got your reply, I had created a Preview Plugin and everything
    within Report Explorer works OK (e.g. both Design Preview and direct
    Preview). One down, one to go!

    A…
  • Nico,

    Thanks for this, I managed to sort of get it working, although not the way
    it needs to...

    1. I am having to set ppReport.OutlineSettings.Enabled and
    ppReport.OutlineSettings to True in code OUTSIDE of the prev…
  • Nico,

    We are using RB Enterprise 9.03 and Delphi 6 (SP2 I think)...

    Regards,

    Pete Colson

  • Nico:

    Thank you so very much for your reply!

    I am looking in the Developer's Guide even now. I see the section on
    "Adding Functions To RAP".
    Hopefully that will get me to where I am trying to go.

    Thanks a…
  • Hi Nico,

    I guess maybe I'm confused. In past versions of RB (I've had many) when you
    are in the report designer and select Help | Help Topics, the RB help will
    appear. Please check the attached screenshot of my old computer wi…
  • Thanks very much Mr. Nico Cizik.
    When i include ppJpeg in my uses that problem is solve, but i have new
    problem.

    1. If i used database connection with data access component, there's
    problem with the image, it cannot load pr…
  • Hello Nico,

    I take this very old discussion back to the presence. My question: Is this
    the same in RB 14.06?

    Kind regards,
    Gerd Brinkmann
    invent GmbH



  • I !should! have known that...

    Thanks Nico

  • I am using RAP. I will look at the sample and try to determine how to setup
    a global variable and resolve the issue.

    Thanks,
    Bob

  • You can test it easily
    Open your demo from C:\Program Files\Borland\Delphi7\RBuilder\Demos\4.
    EndUser Databases\SQL Server\2. ADO

    Create any Report Template then use this sql code for DataSet
    --------------…
  • Sorry about my late answer.
    I am using version 10.04 Server edition.
    I dont have any large object like images etc. except regular editbox. I
    am sure about that my SQL procedure taking so long time. it taking about 2
  • If you have install ReportBuilder Enterprise, then under:
    [Your Delphi]\ RBuilder\Demos\4. End User Database

    You will find 11 End User demos, only only difference between each one, is
    the database they are based upon.....
  • Yes, all of the other DBText components print, and funny thing, there's no
    difference between the properties with the exception of the database fields,
    and the fields are not calculated nor lookups.

    To solve the problem, I del…
  • Nick,
    you're right, but my problem is then background e not the foreground of the
    SelText.
    Whenever, i send to you an example of my report.

    Sorry for my bad English.

    Regards,
    Michele.

  • Nico:

    Thank you very much for your reply!

    My apologies to all of the group for posting in the incorrect forum; I
    overlooked it.

    Nico, thanks for your feedback; that really does help a lot.

    Regards,
  • Thank you .. but i'm using RAP not delphi event ... how to access to
    the variable in the master report from the subreport ?
  • I did what you said using a variable, but i can't solve the problem

    this is an extract of my report

    Value

    Group 1
    Rec#1 0
    Rec#2 179,88
    Rec#3 …
  • Maybe i forgot to mention some important informations .. sorry

    My report has a group and for every record in the master, print the
    detail in a REGION.
    Your solution does not resolve the problem, i tried to put a DbCalc in
  • I have double checked teh Teechart website and tehre is no 7.08 for any
    versions .. I have followed your instructins and reinstalled rbuilder and
    tchart and get the same problem

    Can i download the Report builder that supports …
  • Delphi 7.
    The problem is Runtime and design time In the Report environment .. The
    Charts work fine when dropped onto a standard form

    p.s I have double checked and TChart havnt released 7.08! version 7.07 seems
    to be the l…
  • >The example is working as designed.

    Nico, here is the code in the example:

    ...
    lprinterdevice.printer.setdevmode(devmode);
    ppReport1.printtodevices;

    This does not work. However, it does work …
  • Nico,

    Thanks for the info, I have tried the example code but SetDevMode does
    not seem to change the printer setttings!

    I use the PrintDialogClose event to GetDevMode, print, then call
    SetDevMode before using PrintT…
  • Thanks Nico,

    I marked SupressRepeat.. And works fine...


    Fellipe H.

  • Nico,
    Thanks, this works for everyone's information...

    var strZip : String;
    begin
    if Length(COMPANY['ZIP']) > 0 then
    if Length(COMPANY['ZIP']) > 5 then
    strZip:= Copy(COMPANY['ZIP'],1,5)+'-'+Cop…
  • I guess I'm glad I solved it myself then.



    --- posted by geoForum on http://delphi.newswhat.com
  • The variable is in the summary band of the report. While there are two
    groups in the report, I need to do the calculation for the entire
    report, it's already been done for the groups (Note: This is RB 5
    Enterprise built into a thir…