
technisoft
technisoft
About
- Username
- technisoft
- Joined
- Visits
- 1
- Last Active
- Roles
- Members
Comments
-
Draeden wrote: » When the export converts texts like "123,56" to numbers it reads values DecimalSeparator from the text object and SysUtils.DecimalSeparator - the system decimal separator. If these values are blank or don't match the actual separa…
-
Adam Siwon wrote: » Hi, thank you for answer. I know CharSpacing property but this is not what I'm really need. I have box for the text. If I change the spacing between characters, so that the entire text is located in the box then the text bec…
-
gordk wrote: » BTW "4.2.68" it always amazes me why one works with versions so far out of date when updates are free. current build is fr4.10.11 When one uses packages and has ignorant users on a multi-user system then updating can become a …
-
Lately I also have trouble with the IIF thing. There are cases where it doesn't work and I just can't see why not. I now started to handle it in the script. This seems to be a far easier way to handle conditions than struggle for ages with the IIF …
-
Anu de Deus wrote: » Anu de Deus wrote: » If the printer feeds the paper out at the end of report then the printer can be set up to reverse feed to top-of-form on the next print output. An exception may be if the printer is very old. DO NO…
-
If the printer feeds the paper out at the end of report then the printer can be set up to reverse feed to top-of-form on the next print output. An exception may be if the printer is very old. DO NOT reverse feed when using labels!
-
Hedley wrote: » Hedley wrote: » Are you sure that the bar code reader is not programmed to add extra characters? noo... i connect the reader to usb port and to test i open the notepad and read the barcode nothing to configure …
-
For example 1 and 2 my guess is that it has something to to with the available fonts on XP and Win 7. If a font is not found then Windows performs an automatic substitution and you get something which looks very smilar but not the same. Make sure th…
-
Are you sure that the bar code reader is not programmed to add extra characters?
-
You can create the report object dynamically and then pass it to your procedures. procedure Tform.reports; var report : TfrxReport; for (int i=0;i<=40;i++) { report := TfrxReport.Create; getinfo( report ); createFastreport( report ); s…
-
As Mick suggests. Or make the result column part of the table SALES COMPUTED BY ....
-
zirogirls wrote: » Hi everyone, sorry for my english. Could help me somebody to roam a frxDataSet.X??? I explain me, if por example we do this query "select * from city", the masterdata will roam every row and it will show it. I want do it …
-
Is the Stretched property set to TRUE? For MemoText and Band?
-
Some creative work with child bands, printing the group header info in 2 different ones, enabling and disabling them as appropriate? I am not sure how the different backgrounds could be achieved. Loading background image at run-time? Can your so…
-
inetMark wrote: » Thank you. But I can't found information about frxCompositeReport in programmers manual and users manual. FastReport 4 VCL I was try to find it here http://www.fast-report.com/en/documentation/ Yes, sorry for the confu…
-
inetMark wrote: » Hi. I have 2 reports (two *.FR3 FILES). Is it possible create one output from them? I need to merge these two reports in Delphi enviroment - in program code. Thanks. Use the frxCompositeReport component. Read the manual f…
-
Diablomus wrote: » thanks for answer and solution technisoft Good solution but not good for me [img]style_emoticons/<#EMO_DIR#>/smile.gif" style="vertical-align:middle" emoid=":)" border="0" alt="smile.gif" /> because the data must run t…
-
Diablomus wrote: » thanks for asnwrer technisoft... but it is not worikng:( pageheader is not show right again:( Right, it is not right. I played around with a layout similar to yours and I could get the same problem you have. Worst of all…
-
Something like this pseudo code, untested. var headerstring : string; reporttitle.OnAfterPrint begin // initialize for 1st group header headerstring := table."data"; end; pageheader.OnBeforePrint begin memo.Text := headerstring; end…
-
I think the problem is caused by the sequence the events are executed. I'd try and see whether adding a groupfooter changes anything. If not, I'd manage it in code with a variable that lags the event, i.e. it is set in the OnAfterPrint event of the…
-
jery wrote: » Sorry I failed to give clear information. I used printer brand EXXXX type inject. then defective printer and then I buy laserjet printer brand HX. reality I try barcodes print not same printed by the brand EXXXX, then a few days late…
-
Kite wrote: » I 'm new to Fastreports. I'm using Delphi 2010 with Rave reports but downloaded the Fastreport demo to test and see if I can change everything over to Fastreports before I bay it. (Everything is defferrent) 1. my first problem…
-
jery wrote: » ok this historynya. I got my printer and then print a barcode and then I print no problem. after that my printer no problem section so it can not print and then buy a new printer with the same type but different series. then I print …
-
as well as have a property 'Columns'. Use the one which gives you the desired results.
-
I have alwys found the FR xls report unsatisfactory, partly because it exports page headers and footers for every page, can leave a lot of very narrow rows and colums, etc. I use the export suite from scalabium.com Very little work is required t…
-
Mememe wrote: » The problem is that in this way, I'll have for each user the page one, and after for each user the page 2, and so on: (User1-Page1) (User2-Page1) (User3-Page1) (User4-Page1)....(User1-Page2) (User2-Page2).... <--This's not what…
-
Report -> Variables; Select variable and put a value into the expression box at the bottom.
-
Mememe wrote: » But i'm talking about maybe 100000 users, not only 2. All the information comes from a table or a query. Just cycle through the dataset(s) in the correct sequence. The easiets may be to have a query for the users and another …
-
It is not the password which causes the massive increase but the embedding of fonts, except that the password for encryption results in the automatic embedding of fonts. There may still be another problem with PDF's. A customer sent me a FR templ…
-
gpi wrote: » See changes.txt for FR 4.10: gpi wrote: » + added option EmbedProt which allows to disable embedding fonts into an encrypted PDF file EmbedProt seems to do work just like EmbeddedFonts, i.e. setting it to false and using…