thenicespider
thenicespider
About
- Username
- thenicespider
- Joined
- Visits
- 0
- Last Active
- Roles
- Members
Comments
-
the easiest way I think is: - prepare the report and save as PDF with unique file name - load the PDF file created by FR as stream - save the stream. hope this help.
-
johnbt wrote: How can I output a PDF as a memory stream instead of saving it to a Filename? PDF is PDF. If you need to save as mem stream just use frxReport.SaveToStream and dont' save it as PDF, didn't you?
-
use this code: var param1 string; param1 := '(1,4,5,9,11)'; sql_msg= 'select * from tbl a where a.fld in ' + param1 then execute it!
-
mierlp wrote: 1. on the main form put a frxDBDataset and set frxDBDataset.Dataset to my   table (tbl_ticket) on the datamodule ( is see the fields now) Right. mierlp wrote: 2. on the main form put a frxReport and set frxReport.Datas…
-
valos wrote: 2Â string3Â stri"ng4 but it should look like: "2","string3","stri""ng4" If you have: 2 string3 stri"ng4 then the result using MS Excel is: 2,string3,"stri""ng4" What show above is there is no double quote ("…
-
Lookat Preview properties and simply set button Export:= False.
-
Lookat Preview properties and simply set button Export:= False.
-
Use FR Studio. FastReport?® Studio is a solution for business. It contains powerful standalone visual report designer, scheduler of reports building, saving and distribution. Also it includes many demo samples of reports as well as work methods t…
-
Answer 1: Yes it is possible. Just put a frxDBDataset and set the dataset to TAdoDataset. You didn''t need to define the Lookup/Calculated again. All field (data, lookup and calculated) automatic appear in frxDBDataset. If your Tadodataset/Tado…
-
FR can access field from Delphi dataset but use FR Dataset, look at this sample: var ACCOUNT_CODE : String; procedure MasterData1OnBeforePrint(Sender: TfrxComponent); begin //Akses from Dataset use FR Dataset!!! ACCOUNT_CODE := ; end; No…
-
better span a little time to download the FR Documentation in PDF and read them especially the User Manual (it's contain 142 page with complete sample) then download also FR Demo (containt more than 50 sample report). Except in your question you sa…
-
Just add RichText object in FR Designer. Don't forgot to put frxRichObject into your form.
-
I think use Engine.NewPage is good. Just enter some code to fire the NewPage. I am usually use Engine.NewPage.
-
Look at my post: http://www.fast-report.com/en/forum/?p=/discussion/2865
-
I try to make a simple report by put a memo "Hello Word ...', then put some code as your code: frxReport1.PrepareReport(); frxPDFExport1.ShowDialog:= False; frxPDFExport1.FileName:= 'c:\test.pdf'; frxReport1.Export(frxPDFExport1); Everythin…
-
Sorry, what is TOAD? >> and say now run this report using the toad query I just created in step2. Can u decribe what u meant in above statement? Better provide some data so we can help u correctly.
-
It's look like that your printer does not support A5 but only support A4. Try to use A4 in FR but design your report in "A5 area only" (so, you have bigger space than any object you want to print). Some old printer must set to A4 and not support…
-
FR can use Dataset or DataSource. If you NexusDB VCL can connect to Delphi native Datasource then you can use FR via Datasource. Sorry, I never use NexusDB but I think this will work. I suggest you to d/l FR trial version and try it. The trial vers…
-
List of Importing FR2 to FR3 Error that need fixed: 1. IF function not converted to IIF 2. Bracket [] not converted to <> for Field 3. Wrong StretchMode 4. Memo and Band overlap (must set Free bands placement before) 5. A := B not work (m…
-
There is complete example in FR 3 Demo - Dialogs and Script.
-
Fast Report support any dataset including BDE and TAdo. So, if you can access NexusDB with BDE then you can use Fast Report for printing your data.
-
1. Do you use multiple pages ? 2. The second page (A4) is part of same Report or another Report?
-
thenicespider wrote: I think FR team should change this direction! Better not provide FR2 with Save As but please provide FR3 with IMPORT (read from FR2 files). Another trick is provide import like this: - put a FR3 component and right click…
-
I already known about that code but I need a design time convertion. With recent solusion, I must run the program.
-
I already known about that code but I need a design time convertion. With recent solusion, I must run the program. I think it is very possible for FR Team to provide an easy way to import/read FR2 file. Does any FR3 users need this feature (i…
-
I have a FR2 report that can't be converted to Fr3 perfectly. If you like, I can send the sample file.