nicocizik
Comments
-
Hi Bill,
Unfortunately there are no events that fire late enough to determine the
calculated height of a DBRichText component. I would recommend creating a
pass-thru function and either passing the entire DBRichText object to… -
Hi Lucy,
Why? For some of the things you are trying to accomplish below, you will
need to create a passthru function in Delphi. For instance, the TQuery
object is not available in RAP. If you want to change the SQL of… -
Hi Lucy,
In RAP the methods "CurrentDate, CurrentDateTime, and CurrentTime" are
available to use where ever you need.
Depending on which database you are using the standard SQL command to
retrieve the current date i… -
Hi Jim,
I would suggest getting this working in Delphi before trying it in RAP. In
my testing with the following code inside the Report.BeforePrint event, the
region I created successfully to the footer band.
varHi Jan,
According to some delphi posts on line the following should work
correctly...
rtfSum.RichText := 'my first row' + #13#10 + 'my second row';
Note: I believe the RTF code for a crlf is \par.
--…Hi Jan,
The TppRichText methods SelStart, SelLength, and SelAttributes are available
in RAP, however I believe you will need to create a pass-thru function to
alter the TTextAttributes of the richtext control. See the TppRich…Hi,
The MessageBox is not available in RAP however you can create a RAP
pass-thru function in Delphi to easily display one. See example 35 located
in the \RBuilder\Demos\0. RAP\... directory for an example of loading a
…Hi Gianluca,
Unfortunately this is not currently possible with ReportBuilder. One option
would be to export to PDF and view each page using Acrobat Reader. Thanks
for the suggestion. We will consider adding somthing like th…This is a multi-part message in MIME format.
This is a multi-part message in MIME format.
Hi Mark,
If there is always going to be two dates to deal with you could simply
create two global integer variables and store the values for later use (i.e.
calcualting the percentage difference between the two).
If…Hi Mark,
When you say you need the percentage of two group values, are these values
directly from your dataset, or are they calculated in your report and
displayed perhaps in a Group Footer band? If you would like to calculat…Hi Ricardo,
Thanks, I will look into this.
--
Regards,
Nico Cizik
Digital Metaphors
http://www.digital-metaphors.com
Hi Ricardo,
In order to manually edit the RichText text, you will need to use the
RichText properties such as SelText, SelStart, SelLength, and SelAttrubutes.
All of these properties are included in RAP and enable you to edit …This question is being handled in the General Newsgroup. Please do not
cross post.
--
Regards,
Nico Cizik
Digital Metaphors
http://www.digital-met…This question is being handled in the General Newsgroup. Please do not
cross post. Also please send all attachments to
support@digital-metaphors.com.
--
Regards,
Nico Cizik
Digital Metaphors
Hi Stef,
My first suggestion would be to get this working in Delphi, then try to move
it to RAP. This way you can debug the event code and find out where the
problem is. In my testing with a very similar setup, the method I …Hi Stef,
I would recommend using the Band.BeforePrint event to check the actual
record in the dataset the DBMemo is connected to. For instance...
procedure DetailBeforePrint;
begin
ppLabel.Visible := Report.D…Hi Bin,
You will need to get access to the RAP design module in order to control the
code editor. This can be done by looping through the pages of the designer
page control and access the Tag property where the design module …Hi Rob,
The cut and paste options are available in the calc tab code editor, however
note that it not possible to cut or copy the greyed out text representing
the signiture of a routine.
--
Regards,
Hi Marcelo,
I'm a bit unclear about what you would like to accomplish. You can use the
Close button in the preview window to close the form. It is also possible
to replace the preview window with your own custom form if you …Hi Ashlee,
After further research, I found that the text displayed with certain System
Variable setups is translated automatically when the Report.Language
property is changed. Note that if you change the language of a report…Hi Ashlee,
You can use the OnGetText event of the TppSystemVariable to change the
displayed output. Changing the Text parameter will change the text on
screen.
--
Regards,
Nico Cizik
Digital M…Hi G?nter,
Have not seen this behavior before. If you delete one or both of the events
and recreate it, do you still have the issue? Do you have any idea when or
how this started happening?
--
Regards,
…Hi Bob,
Sorry for the delay.
I would guess that this is a timing issue. The NewPage property is being
set after ReportBuilder determines whether it needs to reset the page number
or not. I will research this furth…Hi Dan,
Take a look at the following example of creating a unique caption per copy
in RAP. This should get you on the right track.
in Print Multiple Copies / RAP / Different Content Per Copy Comment by nicocizik January 2006Hi Serge,
The PrinterSetup.PaperHeight is a published property so it should be
accessable from RAP. Are you getting an error while coding this property or
is your code just not having the effect you want? Which event are you…Hi Marcelo,
This is not a known issue. Is the event perhaps firing for your main report
and a subreport inside the report? Are you able to recreate this issue
outside of RAP in Delphi code? If so, try placing a break point …Hi Brian,
My suggestion would be to begin simplifying the application with the problem
until the error goes away. For instance, you know that you are unable to
create the error with a new project, try removing some components…Hi Brian,
Have you tried removing the report from your main application and re-adding
it? Is there any event code you've added with respect to the report object?
--
Regards,
Nico Cizik
Digital Metap…