MrAndini
MrAndini
About
- Username
- MrAndini
- Joined
- Visits
- 0
- Last Active
- Roles
- Members
Comments
-
MrAndini wrote: » MrAndini wrote: » "I am creating the richview at run time in code and it is located on a single masterdata " the rtf object gets its fonts from the rtf text you are supplying you could try turning off wyswyg to see if that …
-
gordk wrote: » "I am creating the richview at run time in code and it is located on a single masterdata " the rtf object gets its fonts from the rtf text you are supplying you could try turning off wyswyg to see if that makes a difference. …
-
gordk wrote: » if it works for you yes. bear this in mind when working with memos and bands that stretch when you have memos placed vertically one above the other ie memo1 memo2 stretching memo3 memo4 it is better to place memo3&4 in a…
-
gordk wrote: » 1 you should set the bounds of the band first, then rhe memos to the band or the memos may be orphand to the page. 2 the reason you need to set the rowcount of the band is you have not set the band,datasetproperty to connectit to…
-
gordk wrote: » find the page first then add the band. C++: TfrxReportPage * Page; TfrxMasterData * DataBand; Page = (TfrxReportPage *)frxReport1.Pages[1]; DataBand = new TfrxMasterData(Page); DataBand->CreateUniqueName(); Dat…
-
Thanks for the reply. I am fine with adding memo objects to the existing bands in the report and also the finding the band within the report before adding the band. What I am trying to do is add additional bands as I don't know how many bands …
-
gordk wrote: » please post your .fr3 file and your code for adding the bands and memos. BTW you can add as many child bands as you want you siply chain them by setting the childband of the next child to the childproperty of the first child. …
-
gordk wrote: » what are the differences between development and installation environments ie windows system printers etc Working PC - Windows 7 64 bit. Default printer Epson Stylus photo RX650, Installed printers Epson Stylus, pdfcreator, …
-
gordk wrote: » You are doing something wrong Hint make sure you have the designer in your app. start with a small sample load your saved report into the designer frxreport1.loadfromfile('your filename.fr3'); add a memo to the band remember p…
-
gordk wrote: » since you are creating the objects in the context of the band, objects within the band a relative to the band. you will probably wanto to set top, left width and height also you will probably want to set a number of other propert…
-
technisoft wrote: » This is speculative. AFAIU there are a number of RTF components which use the functionality provided by Windows to manage them. In your case this would point to problem with the Windows installation itself. I upgraded m…
-
gpi wrote: » Did you add TfrxDBXComponents to project? Did a reinstall and all was okay, not sure why not there in the first place but all working fine now thanks. Even got it linked into my TSQLConnection so very happy now. Thanks for ta…