
technisoft
technisoft
About
- Username
- technisoft
- Joined
- Visits
- 1
- Last Active
- Roles
- Members
Comments
-
I use the following code in the TfrxReport.AfterPrintReport() to automatically close the preview after printing. TfrxReport.AfterPrintReport( .. ) begin if frxUse <> nil then begin if frxUse.Preview <> nil then begin …
-
OlliWW wrote: » If there is somebody who wants to test it and help me to improve this component: Please don't heasitate to wirte a private message or leave a forum post here. At the moment I don't have a facility to test it, but I am certainl…
-
My simple answer, use query components (one or more) to extract the data. Using queries the indexes are totally irrelevant except for speed to extract the resultant datasets. You can also sort any result by any one or more columns.
-
Andreas Nordlund wrote: » ... Im using the Delphi edition.... and that version doesnt have the crosstabs... IMO if you want to do any serious work with FR you need at the very least the Standard version.
-
I guess it means that the 'excess' text (horizontally) automatically splills over onto a new page, like EXCEL would do with a print area that does not fit onto a single page. The answer is a conditional yes, property EndlessWidth together with a …
-
smeagol wrote: » are you kidding me? if i do that i get [*] without any brackets. [SUM()] As far as I can see both formulations should work fine.
-
fred42 wrote: » But i'm just wondering why the code to reset the variable on the procedure OnStartReport doesn't work ? It's strange for me to reset the variable at the end of the report ? This is not an answer to your question but an altern…
-
hsm wrote: » hsm wrote: » You can use only one preview for one TfrxReport instance Maybe I've reached a limitation of FastReport IIRC FR uses a few global variables which will probably always give a problem for creating 2 reports i…
-
Make 2 reports, only print report 1 but if report 2 is also required you merge them into one.
-
I think that this is partly due to their outdated or inappropriate (for software) business model. Once you have paid for FR they have no further revenue. So there is a constant chasing for new customers and new markets. The inclusion into XE or t…
-
PeterHer wrote: » The problem is the pagefooter on the bottom of the page. It occurs on every page which is good, but on the pagefooter section there is also some data that only needs to be printed (and shown in preview) on the last page. Unf…
-
Have you prepared the report before export? If yes then: Test whether this is related to XML only. Does the export to other formats work? The AddItem procedure points to you using multi byte character sets. Test whether this is related to multi…
-
adelmus wrote: » Hello. I must show report without a picture, but when a report export to PDF i must export a picture. I try method "OnBeginExport" - frxPDFExport TfrxPictureView(frxReport1.FindObject('Picture1')).Visible := True; but it i…
-
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 which worked, no matter …
-
I think the question has to be why the compiler wants to write something that is related to FastScript to the Program Files folder when compiling a project, i.e. after Delphi has been installed? Why does the compiler want to recompile and thus recre…
-
procedure MasterData1OnBeforePrint(Sender: TfrxComponent); var pp : integer; str01, str02, newstr, str : string; begin newstr := ''; str := Trim( ); // trim just to be safe pp := Pos( #13#10, str ); if pp > 0 then begin str01 := Co…
-
I don't think so. The way I get around it is to have an additional 'blank' frxReport component on the form which is used to load the fr3 file and print the report. IOW there is a frxDefault, used to store the default report, and a frxPrint, used…
-
A shot in the dark. 4 decimals makes me think it may have something to do with Currency data type.
-
flogger123 wrote: » Well that's dangerous specially if all your work is gone and start from scratch. Any practice to have this prevented? Do LoadFromFile as the first operation and THEN make any necessary changes. When you think about it i…
-
Giovanni_R wrote: » frxReportContatti.LoadFromFile('ReportContatti.fr3'); LoadFromFile() 'erases' any work which you have done before that and establishes the conditions which were present when you saved 'ReportContatti.fr3'.
-
bikerator wrote: » Hi, I have a project that need print a Timage. But I need to print in a diferent position each time. For exemple, first time i need to print at 2cm from top and 2 from left, the second time i need to print at 5cm from top …
-
sajid wrote: » I did it same like but same problem auto cutter not working, Please Verify if another version of fast report that will perfect work with vb.net 2005.. thanks.. There is nothing more I can do. I do not have VB on my computer …
-
Dzemail wrote: » can some help me ! Sum up 2 dates? Adding two dates doesn't make any sense. Do you mean add a couple of days to a date? or determine the difference in days between 2 dates?
-
sajid wrote: » Dear I checked there is no font Like 'Control' as you said, Can you please Send me sample that worked properly that you created already . Its a big Problem in my application Thanks.. Open attached file in report designer. Zoom…
-
sajid wrote: » Everything is done in my report ... The problem is the printer is not cutting the paper at the end of printing.. I am using fast report studio 4.6 and vb.net 2005 is there any option or code for cut the paper after print.. T…
-
Do not use password protection (which triggers encryption and virtually negates compression). Do not use font embedding as the font for every font used is included in full.
-
Raytt wrote: » This only happens on Windows 7 by the way...win XP has no problems That makes me think that might export to a folder with insufficient permissions.
-
Or in the script field.Visible := ( > 0);
-
sajid wrote: » I Need an example for creating report in vb.net for thermal printer and auto cut There shouldn't be a problem using a pretty normal report. That is as long as you have the right driver for the printer. Unfortunately some dri…
-
It is a known problem with FR4. FR5 will hopefully resolve that issue.