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

  • Thanks guys all good now.

  • Hi!
    we used a code like:
    report.XLSSettings.ExportComponents :=
    [ecText,ecImage,ecRichText,ecBarCode,ecOther]

    before printing in Printing to Excel Comment by rbuser November 2011
  • Hello,
    I have tried out this tip, but for me it was not working in complex
    conditions and also much to change in existing reports. But another tip with
    subject "Duplex for "Terms of conditions" has worked for me.

  • paolo angeretti wrote:


    I think you can put something like this in the beforeprint event of the
    band where the region resides

    region2.visible := Odd(TppReport(TppBand(Sender).Report).AbsolutePageNo)

    HTH
  • Hi Nick,

    This line did the trick in the Header Before Print event :

    if ppReport1.DataPipeline.EOF then
    regColHeaders.visible := False
    else
    regColHeaders.visible := True;

    thanks !

    kind …
  • Hi,

    It works now, using printfirstpage,printlastpage = true, and setting
    header.visible=false, when pageno=1 in the Header.BeforePrint - event.

    But now, I have an other problem :

    Sometimes the last page does no…
  • Hello nico,

    Almost there...

    The header works fine this way, but now I also want to print a footer (with
    adres info) on *every* page.
    However, the printOnFirstPage/PrintOnLastPage -setting applys to footer and
    h…
  • Nico,

    I voted for this before and will not get tired to mention it again and
    again:
    we would love to see the pagestyle with a possibility to position
    outside the margins of the report. I think you should make a property <…
  • Thanks, I'll give that a try.

    What I was actually hoping for, was a way to get the pagestyle print outside
    of the report margins.
    That would make these kind of 'problems' extremly easy and intuitive:
    set margins of report …
  • This is a multi-part message in MIME format.
  • Hi Nico, just to update this thread so it can be closed.

    It's the same problem as the thread "Reports freezing in V14"

    The solution temporary disable-ing controls for Datasets or setting the
    report to SinglePageOnly fixe…
  • The export options include XML, HTML, WORD, and EXCEL.

    The Excel, Word, and HTML exports automatically create tables with
    frames around the cells.

    What I would be most interested in doing is getting the data so I could
  • Hi Nico, thanks for your answer.
    Without problems Nico, I will TppViewer.PaintBoxClickEvent again and try
    create other samples. I understand this method but not could
    do that I wanted.

    Is a good new the possibility this fe…
  • Hello Nico, okay?
    Thank you for your tip. I did a check on the event code, but I not could do
    I wanted.

    I will cite an example to try to better explain. Supposing I have 3 levels
    of detail in my report. In preview of the …
  • Hello Nico,

    Thank you Nico, I've create a small app which does the trick perfectly.

    Regards,
    Stef
  • Hi,
    you are right:-), sorry...

    Roman

    "Nico Cizik (Digital Metaphors)" píše v diskusním príspevku
  • Hello Nico,

    thanks for the patches, solved my problem
  • Thanks Nico.
    I tried that ... Returns "Report.pdf".
    Maybe I am doing something wrong.
    Are you able to test and confirm ?

    Thanks.

    Mike
  • "Nard Moseley (Digital Metaphors)" wrote in message
  • Thank you Nico for your quick response.

    As I look at this code, I would have to apply this to each report, right? I
    have 100 reports in my application so this would be time consuming. Any
    "global solution?"

    Has th…
  • Hi Nico. Thanks for the answers! I think this is going to be easier
    than I originally had thought.

    I am still wondering, though, how I can track down which package holds
    certain routines. There are about 90 packages in the list…
  • From your answer, I surmise that any packages removed from the package
    list would be included in the EXE. Is that correct?

    So by checking to compile with packages, it is not an all or nothing
    situation. I can choose which pack…
  • I don't use the chart features enough to warrant buying it, so I guess
    I will learn to use packages. I have never built apps with packages
    before, so if you have any or anyone else has any good tips about it,
    or can link me to a very…
  • Hi Nico. Thank you so much for bearing with me in this.

    Apparently in my efforts to track down why the project would not
    compile, I had disabled the {$Define TeeChart} directive in a
    ReportBuilder unit in order to see whether th…
  • Interesting. If I create a new application and drop a report component
    on it, then double click that component to bring up the designer, the
    Chart component is there, right where it is suppose to be.

    The project I am porting ov…
  • The package "ReportBuilder TeeChart 9 Components" is there and checked.
    There also is a package named "TeeChart Standard 9 Components" which is
    checked.

  • Hi Nico,
    I check fonts on template and are Ms-SanSerif font.


    I changed with Arial font and when export to pdf file numeric field
    aligned at right are correct and decimal part of number are not truncated.

    Best re…
  • Nico

    As suggested i have looked to use Report Parameters to access information
    from the report but am having problems. I created 4 Parameters called
    MeterNo, PageNo, TopPosition, LeftPosition thinking i could assign and
    in PDF Forms Comment by rbuser January 2012
  • Nico

    I never cease to be amazed by my stupidity and ignorance! As i could not
    "see" the objects visually i was blinded to the Object Inspector's drop down
    list of objects. Its all obvious when you know how.

    If i go…