
OlegK
OlegK
About
- Username
- OlegK
- Joined
- Visits
- 0
- Last Active
- Roles
- Members
Comments
-
Try latest version 4.8.67
-
What is your version of FastReport Studio?
-
You can use following code: var   PictureView: TfrxPictureView;   Image: TImage;   frxReport1: TfrxReport; begin   ...   ...   PictureView := frxReport1.FindObject('Picture1') as TfrxPictureView;   PictureView.Picture := Image.Picture;…
-
Hi, Bridget. Use following code: Set('@Name', '');
-
Hello, You should to set properties: PrintMode to pmJoin PrintOnSheet to A4: In Designer: Report->PrintOptions->PrintMode = pmJoin Report->PrintOptions->PrintOnSheet = A4 From Delphi code: frxReport1.PrintOptions.PrintMode := …
-
wrote: Those lines that I added at runtine to the ReportPage, are printed only in the first page and not also in the other pages... Can you say me why? Because vPage := frxReport1.FindObject('Page1') as TfrxReportPage; vLine := TfrxLineView.C…
-
wrote: I'm trying to insert a line at runtine but I can't... Use this code: var   vPage: TfrxReportPage;   vLine: TfrxLineView; begin   vPage := frxReport1.FindObject('Page1') as TfrxReportPage;   vLine := TfrxLineView.Create(vPage); …
-
Hello, You can use following script: var   QuotedText: string;                                                    begin   QuotedText := '''Sally''s Hat''';                 …
-
wrote: string report =" code of my report "; Are you sure that it is a correct report?
-
wrote: Always in FastRerort 2.5 the component "frPage" has the properties Left, Right, Top and Bottom margin...which are the corresponding properties in FastReport 4.0? LeftMargin, RightMargin, TopMargin and BottomMargin.
-
wrote: Is it possible to have a Variable who's expression is: [if AlreadyExistingVar <> "" then AlreadyExistingVar] You can use following script: if <> '' then Set('Variable', 'AlreadyExistingVar') See a demo in attachment.
-
I have a little idea. You can create image with Width = Report Paper Width - (Left Margin + Top Margin) Height = Report Paper Height - (Top Margin + Bottom Margin). Then you should insert logo into this image. See a demo in attached file.
-
Do you have pictures in report? Try to use export Pictures option, use frx.ExportToHTML(ExportTo, true, true, false, true, false, false); Another idea, try to use Multipage option, use frx.ExportToHTML(ExportTo, false, true, true, true, false, fals…
-
wrote: when i Export this report ToHTML (by frx.ExportToHTML...) What parameters of frx.ExportToHTML() do you use? Can you provide more information and code?
-
Try user-level security wizard in access and DO NOT rename workgroup file, just leave it as Security.mdw.
-
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
-
Hi, 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.
-
Hello, wrote: 1) When I go into Preview mode it's always at 100% but I would like to have it default to 80% so that I can see the whole page. Is there anywhere to set that? You have to write this code in the Code tab: Report.PreviewOptions.…
-
Check the connection string. Perhaps you made error in Data Source, User ID or Password.
-
This error says that FastReport can't load the report file. Likely the application has no access to the folder with report file.
-
wrote: string ExportTo="F:\Inetpub\wwwroot\567\rp_sys_anbar\exportfile" Make sure that your application has access into this folder.
-
wrote: We would like to know how to let his client use full functionality(not limited functionality) designer? They need license for this. Or, you can sign a partnership agreement with Fast Reports.
-
The managed environment translates COM error codes into exceptions. On exception you can read Errors property of report object to see the text description of error.
-
You can use method InheritFromReport.
-
wrote: is created two files with names main.html and nav.html i don't want to create these files, what can i do ? Don't use option Navigator. I mean, don't use this code: frx.ExportToHTML(ExportTo, false, true, false, true, false, false); …
-
wrote: ADOQuery don't have MasterField... ADOQuery have Master field, starting from version 4.7.
-
wrote: Anybody know how to convert FastReport Studio Trail to Full Version ? There is only one way to convert, buy FastReport Studio.
-
In current version all works correctly.
-
Hi, wrote: In this case 450. But i don't understand the reason: in the object inspector is a value of 6.8 in the top property of the object placed in the middle of the report. Now, i have to use much higher values. Why ? 450 - value in pix…
-
This bug fixed in FastReport Studio 4.8.39.