kaju74
kaju74
About
- Username
- kaju74
- Joined
- Visits
- 0
- Last Active
- Roles
- Members
Comments
-
AlexTZ wrote: » No, we are not going to write own PDF viewer Any news here? Regards, Marc
-
Silence means consent... Regards, Marc
-
Hello. Okay...I've solved it myself...thank you. Best regards, kaju
-
Hi... Thank you for answering, but how this sample should help me with my problem? I don't want an interactive report, I need to export page-ranges as pdf. Hmmm, maybe you don't understand my problem. I hope to clearify this: I have a big appl…
-
Hi... I've nearly the same problem but don't understand, what you are saying 8-) My problem: I generate ONE report with multiple pages with data for several employees. The report is grouped by an employee-ID, so as soon as a new employee is…
-
Hi.. I've used direct control access and now it works very well for me. Thank you very much for all responses 8-) Regards, Marc
-
Hi.. Thank you...splitting the richtext into three parts isn't a solution, cause the enduser can place the placeholder at any position...but I'll try to communicate with the real object and loading the richtext using a stream.. Best regards, …
-
Hi... If I disallow expression, the variable [TEXT] won't be replaced... Regards, Marc
-
Yes...this sounds like the same problem as I have... @FR-Team: Any idea how to solve this...? Regards
-
Hi... Thank you for answering. Well, this is a liltte bit circuitous but should work 8-)) Are there NO special characters (like \N) to solve this while writting...? If not, maybe that's a little improvement for FR4
-
The author told me: 1cm = 37,7953 Pixels Regards, Marc
-
Hi.. Did you've any solutions for this now? I have the same problem where I need to re-place an object at runtime using cm/mm instead of pixels... Regards & Nice X-Mas, Marc
-
Yep, I've tried this but w/o any success! Any other ideas...? Developer...?
-
Okay....but how to get the last line number?
-
Any date for the recompiled version?
-
Hmmm...but I use bitmaps with a white background and they will be all exported with a light gray background. Just create a blank report, set "use background" property of the pdf-exporter to "true" and export the report. The exported pdf-report wi…
-
I always got a "ListIndexOut..." error and it seems to be a displaying problem dependant of how many record lines will be reported. I've used a groupheader to differ some records, and on some reports I got this error. Then, I've modified the heig…
-
Thx! BTW: What's the best way to create a question: Using the registered ticket system, this forum or the newsgroup?
-
...maybe it's a reference pointer problem. Sometimes, I got a 'pointer' A/V, sometimes an 'Abstract'-Error. If I use the following code snippet just before creating a new report: ? MyPage := TfrxReportPage(FastReport.FindObject('MainPage')); …
-
If I get more 'spare'-time, I try to extract the necessarry code into a sample app. For now, I had to disable the background images if I use the '.PrepareReport(True/False)' feature, o/w my app crashes all three times
-
wrote: But, anyway, you can't change this property from a script. Not????? But wouldn't it be a nice feature for further versions??? Problem: Each report page has it's own background image dependant from it's data. It would be easier to imp…
-
...and what also happens: - I assign "Pic1" on the first report (= 1 Page using '.PrepareReport(True)') - I assign "Pic2" on the second report (= 1 Page using '.PrepareReport(False)') The created report shows: - Page1: Pic1 - Page2: Pic1…
-
If I create a simple demo app loading different images, all seems to work well - aaarrrgghhh! But my report in my 'life' application is more complex and very hard to extract, but this is, what it contains: - One report for multiple outputs (yearc…
-
THX - it works, but I didn't understand why it doesn't work in the obp event of the memo itself!?!?!?!
-
Yep, as a workaround I've already created an internal subfunction which calls the 'real' delphi one, so I only need to remark this line while designing, but is this the one and only solution?
-
This works except for multi page columns. If columns where set > 0, the group header may be seperated from it's childs! Maybe, this feature isn't implemented yet or did I oversight a property?
-
Something like this: procedure TForm1.btn1Click(Sender: TObject); var  RichView: TfrxRichView;  Stream: TMemoryStream;  Str: string; begin  RichView := TfrxRichView(frxReport1.FindObject('Rich1'));  if RichView = nil then   Exit;  …
-
yep - but due of the (damn) complexity of richtext data, the easiest way to do this is loading the rtf text into a (memory)stream and assign it to the fast report object.
-
Sorry...NOT A FR3 problem - it's FinePrint making my reports soooo large
-
This error seems only to occur while developing under D7 Enterprise - under D6 Prof. everything works fine. Strange - I'll try to create an exact procedure how to reproduce it.