Default Avatar

Rolf

Rolf

About

Username
Rolf
Joined
Visits
0
Last Active
Roles
Members

Comments

  • Shiftmode is not the solution, tried StretchMode to DontStretch and it works. It's Stretchmode set to smDontStretch that solves the Issue. Thank you for your Help! Rolf
  • gordk wrote: » What version of fr are you working with? FR 5.11 VCL Professional purchased basic, pro, enterprise or embarcadero version or fmx send me the code where you are setting up the report gord@fast-report.com Got a solution. …
  • How can I check whether the values are accepted? I changed the Routines as you wrote. The Report (1Page) shows nothing, takes a lot of Time (30 sec.) , as does the following Export. No more Crashing. In Debugger I get to a procedure "Eng…
  • P.S. I use integer values as well, do they have to be passed as strings as well?
  • I iterate through the Program until everything is ready, Variables passed, Dataset open , usually when the next thing is "Prepare" or "Showreport", then I open the designer and preview the report. After receiving your Answer I tried and started …
  • I wonder if it is too complicated or too simple. Any hint on that?
  • terry wrote: » Hello, I would like to enter Barcode.Expression data that includes (01) Device Identification (17) Expiry Date (10) Lot number Can I do this in code ie: Bardode2D1.Expression :='DeviceIdentificationLotNumberExpiryDate' Thanks…
    in 2D Datamatrix Comment by Rolf June 2016
  • J??n Kol??r wrote: » J??n Kol??r wrote: » Hi , this is my first question in this forum . i try to print barcode with delphi 7 + fastReport 5. but this bar code generated with FastReport is not recognized by barcode reader. When ex…
  • I have all Updatesy installed, removed all FastReport Files and reinstalled. How can I see what value of TDataModule.ClassGroup I use?
  • Tried to put the Export before the Preview _ seems that the Export modifies the report - only the last of the prepared reports is shown now in preview.
  • I use FR 4.14 If a Preview is shown, it works as described in the Manual. But the Export just exports the last of the prepared Reports.
  • Hello, found the solution myself: I had to put a database connection on the Datamodule that I created for thr Reporting. Usually it is possible to use one Connection to tha Database on different Forms/ Units which is not true for this combinati…
  • If I open the Report > Data Menu a Dialog opens, where all available Datasets should be listed. This Dialog shows no Dataset. What would I have to do to make the Datasets visible? There are 4 Datasets on the Datamodule in question. TIA R…
  • Hi All, the solution from the FR Support: [IIF( = -1,'-/-',)] works fine. Rolf
  • gordk wrote: » begin if = -1 then '-/- ' \\ i expect this string is what is causing the problem in any code written else ; end. run the report, get the errormessage : "Script Error at 3:3:';' expected since i see a period after end i…
  • Rolf wrote: » Rolf wrote: » Over time I have found that the memo IIF() can be troublesome. Even building the expression via selection of function and fields in the editor instead of typing it, there were cases where I was unable to create an e…
  • technisoft wrote: » Over time I have found that the memo IIF() can be troublesome. Even building the expression via selection of function and fields in the editor instead of typing it, there were cases where I was unable to create an expression wh…
  • gordk wrote: » bad syntax. should be [IIF( = -1),'-/-',] Thank you. Tried, but now the exception is: ';' expected. inside the expression and at the end doesn't help. Any idea? TIA Rolf
  • Well... I found the error myself. I have to admit, it is the most silly one. After programming for about ten years. What happened: I had a function to prepare and print the report. On the datamodule (new) and on the form(old). Same name. Copie…