Default Avatar

Bridget

Bridget

About

Username
Bridget
Joined
Visits
0
Last Active
Roles
Members

Comments

  • So I have sort of figured out my problem. I changed the code for the group sum: Incorrect: SUM(,BaseMasterData) Correct: ,BaseMasterData)> The funny thing is that, still, this only works if I have a memo box in the group footer doing t…
  • Is that true... "headers can't be printed if corresponding databand is empty.". What if the report needs to show that there are no results? -Bridget
  • I ran into the same issues, trying to use a pagefooter for the summary of an invoice. Based on the response in this thread, I changed it to a Footer. Gordk, you said: "if you want the masterfooter to go to the bottom of the page write code in i…
  • Hi, I don't see an option for "Do not Sort". See attached screenshot. Do you mean to just set the expression to blank? Also, is it true that you can not change the order of a dataset's results from within FastReports, if the dataset is ext…
  • AlexTZ, What do you mean by this: "If your datasource is sorted already, you may turn off group sorting (in the group header editor)." I don't see an option like that in the Group Header setup? Thank you!
  • A way to order data from an external Dataset (like IanT suggested: frxDBDatabase1.Dataset.IndexFieldNames := [as specified]) would be EXTREMELY helpful. My example is that I have one dataset to be used in 2 different reports. The reports take the …
  • It's basically not letting me to do anything with a input variable who's value is this: 'Hat's'
  • Going even further than that. I have an input variable () that is sent in as 'Hat's' Now I want to set @Name to that input variable but this doesn't work: Set('@Name', '');
  • Thank you so much for the input! However, the first option didn't quite work. The program did run all the way through, but when it was done there were no preview windows. Also, the second option wouldn't work in my case because I have all the pr…
  • gordk wrote: » The info you are refering to is for .net what product are you trying to work with Fr4.# for delphi ? Using FastReport v. 4.8.41. The goal is to export to Excel and PDF. Thank you!
  • Hi OlegK, Thank you for you help. But going further, how would this be done if sometimes contains a single quote. This is what I had and it doesn't work. Set('@Name', Copy(,1,50)); I even tried this: tText := ''''+Copy(,1,50)+''''; Set…
  • Hi OlegK, Thank you for you help. But going further, how would this be done if sometimes contains a single quote. This is what I had and it doesn't work. Set('@Name', Copy(,1,50)); I even tried this: tText := ''''+Copy(,1,50)+''''; …
  • OlegK wrote: » Hi, OlegK wrote: » Fast Reports 4 has "added ability to change templates path in designer" but I can't find where to do that. Does anyone know? Menu Report->Options..., tab Inheritance. Right, I know you can acce…
  • OlegK wrote: » OlegK wrote: » We wanted to have our company logo as a watermark on our reports. Try to use Picture object. And set following properties: AutoSize = true Stretched = false Thank you OlegK, but we don't want to use …