Default Avatar

S.Barco

S.Barco

About

Username
S.Barco
Joined
Visits
0
Last Active
Roles
Members

Comments

  • solved!! I forgot to create the datamodules (tdatamodule.create) ... Now I have all dataset accesible from the fr designer menu (report/data). thanks
  • ok, thanks again Mr. Gordk S.Barco
  • Solved!!! a) as you said on 29/Sept ... seems like you are running in debug mode and the frlib was not compiled with debug info... [img]style_emoticons/<#EMO_DIR#>/cool.gif" style="vertical-align:middle" emoid="B)" border="0" alt="cool.g…
  • Many thanks for the quick response Mr. Gork I followed all their steps and everything will be perfect, except for one problem that I can not solve, I explain: 1. Desinstall fr3.0 2. Install fr3.24 (last version 3.xx) (many thank to Mr. Fediac…
  • Please Help! In other words ... I need to save about 100 reports in a curl every day to pdf format, then if i execute the savetofile method the user must to do two operations 100 times: - to indicate the file name - press click to ok button …
  • Sorry I forget ... When I said "fr changes the data" ... I mean that it changes in the report not in the database. Thanks Help!!
  • I make the following steps: - Create a new project - In the Form1, drop: frxReport, frxDesigner, OpenDialog and 2 buttons (btNew, btShow). - In the Form2, drop a frxPreview and set Align to Client. - then write the onclick procedures procedu…
  • Finally I have found it!!. frPrintGrid1 have two properties to load a report before and after print the grid. (ReportBefore and AfterBefore) I think, that part of my ignorance is that there are not a exist a updated manual, then I must try an…
  • The problem is resolved! FR looks NewPage function before at TReport.OnUserfunction, later it executes. Then it is necessary to control that in event OnUserfunction the functions of FR do not do anything, something as well as:   procedure T…
  • Hi, Yes I'm talking about pages produced due to Number of detail records. Ok work with the Master Data fields in the PageHeader Band !!!!!, but I must to put the report Property "doble pass" to True. Realy, when the reports starts and the P…
  • Hello, Mr. Gordk and thanks for your help again. Sorry, but I d'ont have any prototipe/example report because really I want to know if it's possible "to load" a "report piece" at runtime in a "main" report. I will explain in summary my idea an…
  • Thanks for your response Mr. Gordk >What is causing the need for so many different detail bands? it is the necessity, (on the part of the client) of being able to see the details of different styles. >Are the different detail bands us…
  • Sorry for my English, I d'ont know if I'm explain myself well. In summary: - Can I create a detail band (at runtime) reading other detail band in other .frf file? - And How? - or another style to do it? Please, I need help for some expert…
  • Hi Gord again. Thanks for your reply. The report that treatment to do is more complex, next I give more details about your reply: > 1 give them full design capability by using a datamodule and all the frdbdatasets required and let them design…
  • Thanks Gord, Yes I know that a I can create 2, 3, 4... details/childs/... bands and turn visible property of these bands to true/false depending on which one I want to print, but .... I d'ont want to limit (well my client) the number of deta…
  • I'm doing test of a report with differents "Details structures". I try to explain (sorry for my english). The "Basic Report" have: - Header : header data - Detail: Visible to False; Only code-script with a call to a function that "try" cha…
  • RESOLVED!!! I used this new code: if ([datam.cds."FLOATVAR"] <> null) then  [VARMEMO1] := FormatFloat('#,##0.00;;0.00', [datam.cds."FLOATVAR"])) else  [VARMEMO1] := 'Null'; I use VARMEMO1 as variable-scritp and this it's attached…
  • About the formatfloat problem ... Can you give some clue? Thanks Samuray
  • -> 2. What decimal separator you use? The , character, Configured in Operating System Internacional Settings. If I see the value in the database it's with comma too. Example 1000,12 I try too whit #.##0,00, but I get the same bad result …
  • In other post. about FLOAT vars and FormatFloat, Samuray say me: 1. Don't use construction: if ([datam.cds."FLOATVAR"] <> null) then // wrong code use this code: if not FieldIsNull('datam.cds."FLOATVAR"') then // right code 2. Tr…
  • I think than you must write in script code. You can use a delphi variable or a Tfield to pass FR the decimals value, then in script code in all the bands that you need(details, totals, ...) you must to code some thing like: if [DECIMALVAR] = …
  • Thanks Samurai!!! I understand it and that's work. Thanks Again