
technisoft
technisoft
About
- Username
- technisoft
- Joined
- Visits
- 1
- Last Active
- Roles
- Members
Comments
-
With the dot-matrix reports you also have to take into account what the printers.xml file and the associated emulation does, if anything. However, I would expect all the characters, control ones or not, to appear in the txt files you produce.
-
Can you upload the fr3 file, with header and without? It seems to be a very odd problem. One thought which just came to me now is this, the background has its own character pitch. IOW, the background, page white space, may have a different pitch …
-
I know the feeling, 99.9% there after spending days or weeks and the 0.1% which fails is a vital component of the program. wrote: Then I tried to add a header to the report, where the header has no spaces that could be removed. And, now the te…
-
Your notepad view does not show any of this wrote: When exporting as TXT the amount of spaces between the columns are reduced, and the output file thereby unreadable for the other application (not ours). Maybe notepad is capable of compensa…
-
Petter S. wrote: » Hi all. I have a report that that I need to export as TXT, to be read by another application. The report detail is set up with one string per detail, and information at fixed positions, divided by spaces. When exporting as…
-
No matter which version, according to the feature matrix the Embarcadero RAD Edition is not even the full BASIC version, http://www.fast-report.com/en/products/rep...ure-matrix.html
-
kamiller42 wrote: » Delphi XE2 has been released. It comes with FR4. FR5 remains a myth. Would be nice to get some kind of FR5 update. This is the message from Anton kamiller42 wrote: » As you know, Embarcadero RAD Studio XE2 is coming wit…
-
I think that there are substantial differences in the way 2.5 and 4 work. I would make sure that: a] the latest printer drivers are used b] the code generating the report is correct c] that at reporting time a printer is specified for every repo…
-
technisoft wrote: » we will get the first glimpse on 4 August when the first session of the world tour takes place. I just realized we are already in September. Maybe Embarcadero's world-tour schedule was over optimistic as I have heard nothi…
-
As I read the e-mail, yes, FR5 is finished and will form part of XE2 with as yet unknown license conditions. we will get the first glimpse on 4 August when the first session of the world tour takes place.
-
hsm wrote: » How can I embed the font in the report so that it always shows the correct font regardless of what the user has? As far as I can make out encrypting (by specifying a password) will embed the font. Unfortunately this will result i…
-
I am very happy to see #2. Is there any support to have physical printout different from the on-screen view? E.g. On-screen it reads TAX INVOICE, the physical printout reads COPY TAX INVOICE.
-
Make sure that the printers.xml file is in the program folder and that the right emulation is selected.
-
The answer is in the other thread you started.
-
What you should do is to programmatically set up the printer from scratch for every print job, starting with a printer reset command, followed by the page length, the fonts, and anything else possibly required. IMO this is the only reliable way to …
-
Now that we had an announcement about the renaming of Fast Report Studio let us hope that this is the beginning of a release cycle. They must surely be very eager by now to sell some upgrades to their customer base.
-
I don't know why the second page is blank but the following may give you a clue towards that. There is what I consider to be a bug in the handling of the 'Start new page' property of (I think the Groupheader). I am writing from memory at the mome…
-
Anu de Deus wrote: » Doesn't Trim only remove blank spaces, leaving the CRLF there? Trim should remove all white space characters (codes below ASCII #32) from the begin and end of a string, leaving embedded white space in place. I think.
-
Anu de Deus wrote: » Any memo text value will have a CRLF in the end. You could do this: lTxt := memo1.text; // Internally, it will have 'Joe'#13#10 delete(lTxt,length(ltxt)-1,2); Memo1.text := lTxt +' Smith'; Trim() should do the same …
-
borispauck wrote: » Hello everyone, Please, could anyone tell me how to add sum function in the next query? [ SQLExp('select anDiscount from the_move where ackey='''++''' ') ] In the FR page i normally get anDiscount for every article,…
-
I wonder whether a subreport can be put onto a childband?
-
Instead of dropping an frxReport component onot a form (which I assume you do) and use that to generate the reports I would try to create the frxReport component dynamically whenever it is needed and destroy it afterwards. In pseudo code instead of…
-
Try using the column property of the band.
-
Instead of generating 30 pages in FR why not instruct the printer to print 30 copies?
-
Witha dot-matrix printer I have always worked in lines per page and characters per line. The printer can be set up to have a corresponding form length in lines. IMO the secret is to set up the printer programmatically for what you want. The report …
-
I think what is meant an excel export that after the first header only outputs the detail data rows. No pageheader, columheaders, maybe even group headers. the same for the footers. One should be able to work the resulting spreadsheet in excel wit…
-
Or use a query SELECT A.VALUE ,(SELECT FIRST 1 B.ETADATE FROM TABLE B WHERE B.ID = A.ID ORDER BY B.ETADATE) AS ETA1 ,(SELECT FIRST 1 SKIP 1 B1.ETADATE FROM TABLE B1 WHERE B1.ID = A.ID ORDER BY B1.ETADATE) AS ETA2 ,(SELECT FIRST 1 SKIP 2 B2.ETA…
-
In my experience EXCEL exports from a report have alwyas been unsatisfactory, no matter whether it was Fastreport of Pragnaan export components. I am now using Mike Skolnic's export suite components (scalabium.com) and never looked back. It costs a…
-
Nadia wrote: » Sorry !! ... my fault. Didn't notice that DetailData4 had property PrintIfDetailEmpty turned OFF. That's why when placed before other bands, it was printed, as it was not longer conected to the SubDetail Bands. It is off by…
-
Monte Carver wrote: » Please see the attached jpg. Here you notice that midway of the first page, Feb 19th starts. The problem is this date corresponds to a new building, which does not have a label until the second page. I have the StartNewP…