nicocizik
Comments
-
Hi,
My first suggestion would be to download the latest trial version of
ReportBuilder that runs with Delphi 5 (RB. 7.04) and test with that. There
have been many fixes and enhancements since RB 6.03. Be sure to back up any … -
Hello,
Which version of ReportBuilder/Delphi are you using? Does this error occur
at design time or runtime? How and when are you closing all the pipelines?
Does it happen with every report?
Be sure the SkipWhenNo… -
Hi J.W.,
You will need to create a rap pass-thru function to access the Chart
properties. Detailed examples of creating and implementing pass-thru
functions are available in the ReportBuilder Developer's Guide located in
Hi Stef,
In RAP you do not need to use the Delphi name of the report. Simply use
"Report".
Report.Parameters[...
--
Regards,
Nico Cizik
Digital Metaphors
in Need variable from Delphi form in RAP Comment by nicocizik August 2006Hi Stef,
Yes, you can do so using report parameters. Take a look at the
Report.Parameters property and its topic in the RBuilder help. Also, below
is a small example of how it can be used with RAP.
in Need variable from Delphi form in RAP Comment by nicocizik August 2006Hi Juan,
This question has been answered in the General newsgroup.
--
Regards,
Nico Cizik
Digital Metaphors
http://www.digital-metaphors.com…Hello,
The TDateTime values are essentially doubles so you will need to encode them
as such when using a date format. For instance...
IF (Episode['Outcome'] = '61') and
(Episode['End Date'] >= EncodeDate(…Hi Bin,
This is not a known issue. We have an example of this working correctly in
RB 10.04 however we do not have anything for RB 9.x. If you can create a
simple example demonstrating this behavior, send it in .zip format t…Hi Bin,
I'm unclear about what is missing. Are these components missing from the
Data Components toolbar in the design tab or are they missing in the object
tree of the Code tab or RAP? There is no reason that only some of t…Hi Bala,
Excellent, glad you got it working
.
--
Regards,
Nico Cizik
Digital Metaph…Hi Bala,
Where (which event) are you creating these DBTexts? You might try creating
them before the report starts generating. This would be before making a
call to Report.Print.
--
Regards,
Nico C…Hi Bala,
Where are you setting this value? It may be that you are assigning the
reset group too late. Are you creating these components in RAP or in Delphi
code? Which event are you using?
--
Regards,
…Hi Kemal,
Try using TppVariables in the footer band to calculate the page totals. You
can make the calculations inside the OnCalc event of the variables and
determine when you would like each one to reset its value using the …Hi Graham,
Please see my reply to your other post. We also provide an end-user RAP
resource called Learning to RAP.
http://www.digital-metaph…Hi Richard,
After looking at your example a bit more I noticed that the ppVariable2
variable has a datatype of dtString. This is what's causing the calculation
problem. Setting this to Integer solves the calculation problem.…Hi Richard,
I will take a look at this behavior. It is however better to use the OnCalc
of the variable being calculated. For instance, changing your RAP code to
the following gives a correct result in your example without t…Hi Richard,
The OnCalc event is working as designed in this case. When calculating on
DataPipelineTraversal, the pipeline has no idea when the page will end so it
keeps traversing after a page break essentially firing the OnC…Hi Rich,
For future reference, please send all attachments to
support@digital-metaphors.com.
In this case, you do not want to calculate every time the pipeline
traverses. The pipeline has no concept of when the rep…Hi Richard,
Which version of ReportBuilder are you using? This behavior has been
enhanced for the latest version (10.04). If you haven't already, try
downloading a trial copy of RB 10.04 and test with that. If you are alrea…Hi Nikolai,
Take a look at demos 41 and 42 located in the RAP main demo
(\RBuilder\Demos\0. RAP\... directory). These two demos show how to create
RAP code from Delphi.
--
Regards,
Nico Cizik
…Hi Chris,
Another option is to use the Report.GetAutoSearchDescriptionLines routine to
access the full description of the user entry. Something like the following
would be possible in RAP using a memo's OnPrint event...
…Hi Chris,
In this case you will want to use the AutoSearchField.Values[] property to
access the values you need. For instance...
var
DateGrab: TppAutoSearchField;
begin
DateGrab := Report.AutoSea…Hi Chris,
Try using the Report.AutoSearchCriteriaByName routine in rap to get access
to the autosearch field. You can then access the Value property to assign
the autosearch value your user entered to a report component in yo…Hi Jose,
Sorry, I did not realize you were printing directly to the printer and
overriding the copies editbox.
Once the print dialog has closed you will need to access the print device
directly. Something like the …Hi Jose,
Try using the AfterOpenDataPipelines event to access the copies field in
your database. Also have you tried using the BeforePrint event? You could
check if the Report.PrinterDevice is not nil, and then assign the co…Hi Max,
Instead of using the header band, try using the Title band. The Title band
is designed to only print on the first page of a report.
--
Regards,
Nico Cizik
Digital Metaphors
in Header band only in first page Comment by nicocizik October 2006Hi Stuart,
In order to use the Assign method of the TTextAttributes object in RAP, you
will need to create a pass thru function to Delphi. Examples of creating
pass thru functions can be found in the ReportBuilder Developer's…Hi J?rgen,
First, try using the OnDrawCommandCreate event to see if you can get the
actual width (in microns) of the label with the new caption. If this proves
to be too difficult, you may need to create a passthru function t…Hi,
The DateTimeToStr Delphi routine does not support the addition of a format
however the DateTimeToString Delphi routine does. This however is not
natively included with RAP so you would need to create a pass-thru function …Hello,
I'm unclear about what exactly you are trying to accomplish. If you are
converting a datetime field to a string, it should return the entire
DateTime including the time. Are you trying to determine what display
…