Default Avatar

starhu

starhu

About

Username
starhu
Joined
Visits
0
Last Active
Roles
Members

Comments

  • gpi wrote: » sorry, but I can't open your zip I have uploaded it again. It might have been damaged it during the prev. upload.
  • wrote: The other error is (also rarely and randomly) that sometimes some memos don't show the data, instead they show the memo text instead for the customer e.g. [*frx1DataSet."netprice"> ] instead of let's say 6800. wrote: Attach rep…
  • Thank you Mick, I will try it.
  • Hello, Thank you for the demo. Do you think I can do this is the OnBeforePrint of frxReport in Delphi Code too?
  • gpi wrote: » gpi wrote: » I have a report that about once a day (both at customer side and on my computer) gives the error "external error". When this happens, the data in the MasterData is completely empty. Attach a screenshot of error …
  • gpi wrote: » Try to use: procedure Cross1OnBeforePrint(Sender: TfrxComponent); begin      Cross1Column0.Rotation := 90;                                     end; It works! Thank you!
  • Thank you very much, it works!
  • gordk wrote: » you must set the top property for the band, then create the memoview within the band it's top can be 0 then you create the next set of band and memo Hi, Thank you VERY MUCH your help. I don't know what I would have done …
  • gordk wrote: » you can create a databand with no dataset just set rowcount prop to 1 Thank you for your reply. I have created the Childbands, but somehow the RichViews are NOT on the childbands, they are on the Page (I checked it in desi…
  • gordk wrote: » you don't need to find out out put height. you must create your richview's design properly, create a child band with a richview for each one, set stretch props and allow split and stretch mode for memoview. and of course set the …
  • Thank you Gordk, You helped me a lot to understand it. The last problem was that TfrxDBDataset creation was before frxReport.LoadFromFile('FR\report1.fr3'); and the LoadFromFile "sweeped" out the settings before. Now it works, thanks to you.
  • Hello, I found the solution. I needed to put > sign.
  • gordk wrote: » [IIF(='USD',, )] so your underlying field is a string so enclose the second value in ()and concantenate the string the last portion should appear as ,(()+'yourstring'))] Thank you very much. It works!
  • gordk wrote: » the majority of the functions are exactly the same as in Delphi [(IIF(='USD',, "(HERE I WOULD LIKE TO PUT A STRING BUT IT SHOWS ERROR)" ))] you can't put it there. and you have too many () braces if the expression before the firs…
  • gordk wrote: » they are not in the manuals, they are present in the designer. go to the data pane click on the function tab, select a function the function props and explanation are at the bottom of the data pane. Hello, Thank you for …
  • Draeden wrote: » In what version of Rave it's created? Your report contains a component TRaveJPEGImage that Rave v5.0 doesn't have. Hello, TRaveJPEGImage is a component that was developed by Rave (because the Rave didn't support jpge pic…
  • Draeden wrote: » starhu, .rav files are enough. Databases are needed to be sure that the resulting .fr3 file is capable to print the same stuff what the original .rav prints, but the import itself doesn't need database sources. If your datasources…
  • tampasounds wrote: » I am doing similar project. I found that ....Its better to export html (in same folder) Load the html into tempmemo then use the tempmemo lines.txt as your html.body (for outlook) The html on the sender side gets loaded …
  • Draeden wrote: » Some time ago on this forum the import from RaveReport was discussed. It was decided to implement this import in FR5. If someone is interested in this import, attach a sample .rav file and write the version of Rave in which the fi…
  • gordk wrote: » try replacing the internal [] sets with () there should only be 1 overall set of [] braces Thank you very much! It works!
  • gpi wrote: » Try to use: Page.Orientation := poLandscape; Page.PaperSize := DMPAPER_USER; Page.PaperWidth := 162; // Page.PaperHeight := 114; Thank you very much! It works! It is very interesting because I tried the following previo…
  • gordk wrote: » does the printer support custom sizes, and did you create the custom size sheet for the printer Hello, The printer support the custom sizes. If I set the printer to the envelope size it works.... but I though that the F…
  • gordk wrote: » you must place envelopes in printer correctly and set your positioning correctly. envelopes are usually inverted. Hi, Thank you for the answer. If I put the printed envelope on the printed A4 (both are set to middle in th…
  • Thank you very much! You helped me a lot!
  • gpi wrote: » Hello, Use Memo.SetBounds instead of Memo.Height Thank you very much, it works.