brodzins
brodzins
About
- Username
- brodzins
- Joined
- Visits
- 0
- Last Active
- Roles
- Members
Comments
-
I use the following code for a report which creates (in English) and word string for currency for FR VCL 6 var Temp : real; DigitA,DigitB: integer; Ams : string; Ac : string; NumStr : TStringList; fun…
-
user2019 wrote: » Hi, i have to print several reports in Delphi after each other (as i must archive them as separate files). For the first print the print dialogue is shown. All subsequent reports do not show the print dialogue and are sent to …
-
Do you have a fixed set of groupings, as in the example (male / female) or is it a variable number based on the returned rows? Since it also sounds as if you want the summation to be across all the master-data bands, not just within the given mas…
-
Yep, my idea seems to work, but only with the FireDac components. They seem to be the only ones which publish a Record Number property from the underlying TQuery object. First, define a Report Variable named RecNo In the code section (fdqReg…
-
Have you looked at the System Variable [Line]? It will number the lines(rows) of a report. If your records are always in the same order, this should then correspond to the record number. One idea, in your band???s OnBeforePrint event, can you ass…
-
YSH wrote: » Hi everyone, Wondering if enyone knows how to get a dataset record id? What are you asking for? The current record number? That is usually not a useful piece of information, since the order of the records is changed by ORDE…
-
Chris C. wrote: » FYI I had this same issue, but ONLY with the FDQuery objects. Database and Stored procedures did stay put. I posted a ticket and Paul Gursky had me comment out a line in frxFDComponents and now all of my FDquery objects once …
-
Just installed v6.3.2, and am getting the same behavior (this is with Rio v10.3.1; 64 bit) Comparing to an app compiled with v6.2.15, I see the TfrxFDQuery components have a few new properties: Active Cached Updates Macro Create Macro Expand …
-
Polomint wrote: » Polomint wrote: » all the data objects on the data tab "snap" to the upper left hand corner once the report is previewed. So, when you have multiple data objects, they all get piled on top of each other. G'day Rick, …
-
Try checking the AutoOpenDataSet property. Not sure why, but I went through all my reports that use the DBLookupComboBox, and I have that checked in all of them.
-
blackmaskarade wrote: » Yes, the KeyFiled is unique (primary key on table). SELECT DISTINCT ocurrs the same problem... After click raise error "Reader has no more rows" OK, distinct KeyField -- but are the ListFields unique? Is there …
-
blackmaskarade wrote: » Hi guys, When I click on the component, it shows the duplicate records. Anyone have an idea how to solve it? In your dataset, is your lookup field unique? Do you have the same info for the List Field associat…
-
That is how the FD components have always looked since the first time I installed them a few months ago. Never knew what the symbol was or that it wasn???t supposed to be that. What I was pointing out were the three icons which changed to this on th…
-
Polomint wrote: » G'day Rick, Has the fix in v6.2.15 solved this permanently for you? Cheers, Paul Paul and all, Yes, the changes as implemented in 6.2.15 do allow for the install of both the 32bit and 64bit versions of the FireDac C…
-
Polomint wrote: » G'day Rick, Has the fix in v6.2.15 solved this permanently for you? Cheers, Paul Paul, Didn't realize there was a new release - having just gotten 6.2.13 working fully last week, been focused on client related iss…
-
gpi wrote: » Modify frxFDComponents.pas type {$IFDEF DELPHI16}   [ComponentPlatformsAttribute(pidWin32 or pidWin64)] {$ENDIF}   TfrxFDComponents = class(TfrxDBComponents)   private Большое ÑпаÑибо THANK YOU THANK Y…
-
gpi wrote: » Uninstall all instances of FR, remove all FR's files and folders (see system and hidden folders too), install FR again, copy all files from FireDAC folder to LibDXX and LibDXXx64 folders, compile frxFDXX.dpk packages, install dclfrxFD…
-
gpi wrote: » gpi wrote: » The 64 bit fdxD25 compiled fine, but when I try to compile the dclfrxD25.dpk package in the Lib25x64 directory, I get a failure with "DESIGNIDE" not found. IDE is 32 bit, so you don't need dclfrxD25.dpk for 64 bi…
-
brodzins wrote: » So, just to make sure I am good (using Tokyo for example): I first open LibD25\frxFD25.dpk and compile. Then open LibD25\dclfdxFD25.dpk and compile. Then, right click on the bpl in the project window and select install. Thi…
-
gpi wrote: » Use LibD25 folder for 10.2 x86, LibD25x64 for 10.2 x64, LibD26 for 10.3 x86, LibD26x86 for 10.3 x64 Remove all path to FR's Source folder with subfolders from IDE's Library and Browse paths Ahh! That is what I was doing wrong…
-
Polomint wrote: » G'day Rick, Initial thoughts... Polomint wrote: » Also, when I opened a major project (in Tokyo) that uses FastReport, I am getting an "Error Reading Form" message: Error reading frxPDFExport1.DiableMultChrGlph: Property …
-
Figured it out by reading through the source for the MemoView components, and very simple Uses Memo2 as an example: procedure Memo2OnBeforePrint(Sender: TfrxComponet); begin Memo2.Font.Size := 12; {this sets the field to the default font s…