rbuser
Comments
-
Hi Nico
Thanks for your suggestions. Unfortunately I don't think your suggestions
provide a solution to the problem ... I shall post back here if I find one.
Regards
Mike
-
I do it a ozher way now: I save the data from the Chart into a MemTable.
Then I use a pipeline to transfer the data to the reports chart. Works
great.
-
> I want to transfer to 2 sqlserver (with same structure) databases.
Save it to a file. Then read the file.
-
I want to transfer to 2 sqlserver (with same structure) databases.
The problem is that I don't have both server connected...
... it's like make a software update (i want to run a script to update the
report)... it's not this , b… -
Stijn Verrept wrote:
Found a solution: I created the same group twice and put the SubReport
on the last footer.
--
Kind regards,
Stijn Verrept.
-
Nico Cizik (Digital Metaphors) wrote:
Hi Nico thanks for the reply. Well: my DBMemo is in the GroupFooter so
I want it to print right after the details. And my Subreport is in the
footer as well put it should print on a … -
I'm using Delphi 6 with SP2. The time stamp on RBRCL76.bpl is 3/17/03,
6:02AM...
-
Mark Meyer wrote:
Okay - I 've found Report.PrinterSettings.MarginBottom, so it now reads
NeededHeight:=
DetailBand.Height+CountSubElements*SubDetail.Height+SubSummary.Height;
// if poPortrait:
Availiable:=… -
Hi,
Okay - this works. But how to calculate?
I thought about something like
NeededHeight:=
DetailBand.Height+CountSubElements*SubDetail.Height+SubSummary.Height;
IF (Report.Height-Report.Bottom… -
my attachment has been deleted. Where do you want me to post the datas?
regards
Didier
"Didier GAWTARNIK" a
-
Hi,
-
Hi Nico,
-
Thanks for letting me know. Email just sent.
Angus Miller
-
Hi Nico,
Thanks for your replies. From them, I've been able to work out most of what
I need, but just can't quite finish it off. (I've sent an example of what
I'm trying to achieve to your email. 9kb file)
Thanks for … -
If you whant to use the DBImage component you have to save the image in the
database, not the path to it.
Normaly you can load the image by doing LoadFromFile with a normal Image
component but I don't
know if that workes mit the … -
The errorn is occurring during the create of the form in which the TppReport
component is located. When the form is being created we do not know the
report name so the property is blank.. This behavior worked in version 6.x
as I sta… -
Here's my code for adding fields at run time to a JIT pipeline:
procedure TForm1.ConfigurePipelines);
procedure AddJITField(aPipeline: TppJITPipeline; aDataType: TppDataType;
aFieldName: String; aSize: integer = 0 );
var<… -
Hi Nico,
It's not set. Anything else I can try?
Susie
-
Hi Nico,
I've done that. I put my graph subreport in the header band and the rest of
the subreports in the group header band grouping on a static label. After a
few initial difficulties, I now have a situation where the graph … -
The error only seems to occur when the data fed into the chart comes out of
a dade recordset !
Any suggestions !!!
The major problem is that when this report run in a reportserver the server
crashes also afterwards !!… -
More info
I've deinstalled completelly delphi and reinstalled all packages.
I've installed TeeChart 6.0 (before 5.02).
Still the same problem !!!
-
Hi Nico,
So it is not possible? One of the problems I have at the moment, is that I
want to place a border around my work, but within the bands, I have shapes
set to match the bands width. The shapes print ontop of the bor… -
I have the latest version available (upgrade 2004/01/05) the server one. The
old reports were ok with FF2 2.13.
regards
Didier
-
Hi Nico,
making
Thanks very much for your reply. It works a treat! Would it be a problem to
always set the subreports band property before making the call to
CreateReport, regardless of which situation you use it in?<… -
Nico Cizik (Digital Metaphors) wrote:
Thanks Nico,
It works well.
Just for anyone for anyone else following this thread, I finally found
that the thickness of the line is set via the Weight property (in points)… -
Nico Cizik (Digital Metaphors) wrote:
I have just across a similiar problem, I think. I am currently
designing a report (invoice) which will laid out as such.
----------
Header
----------
Details (1 or mor… -
Hi Nico,
I had tried that method earlier, however the line would stop short on the
last page when the records in the details band stoped around half way up the
page, then the final bit of the line would be displayed in the page footer… -
Nico,
I did try this but then my first page wil appear empty, the order of
subreports will be mixed, and my header+footer from the first page will not
be copied to the other subreports.
The summary-band with "newpage"… -
All child-subreports having an empty summaryband with "newpage=true" will do
the trick. Is this the correct way to go ?
Leon
-
I have the graphic type set to JPEG, no image is displayed. I added a
tppImage to the report, and on the GetPicture event of the original
TppDBImage object I added this code:
QueryImagesIMAGE.SaveToFile('Image.jpg');
…