nicocizik
Comments
-
Hi Jose,
Yes, the SQLBuilder object is available in RAP.
--
Regards,
Nico Cizik
Digital Metaphors
http://www.digital-metaphors.comHi Jose,
Unfortunately this scenareo is not currently supported from within the data
workspace. One option would be to alter the SQL manually and set up your
search criteria in code. I would recommend using the SQLBuil…Hi Fabio,
It is possible to set report parameters and use them in RAP as you need.
Take a look at the TppReport.Parameters topic in the RBuilder help.
--
Regards,
Nico Cizik
Digital Metaphors
Hi Mark,
Are you able to recreate this issue using the EndUser demo located in the
\RBuilder\Demos\3. End User\1. Report Explorer\... directory? If so, please
let me know the exact steps you take to creat it. In my testing t…Hi Christophe,
You need to add ppCTDsgn to your uses clause. See the article below.
------------------------------------------------------------
Article: Controlling the End-User Environment
-------------------------…Hi Jeff,
Take a look at Demo 33 (dm0033.pas) located in the \RBuilder\Demos\1.
Reports\... directory. This demo shows how to remove empty space between
vertical fields if one does not have any data.
--
Regard…Hi Jaweed,
The latest versions of the complete help files are included with the trial
versions of ReportBuilder.
--
Regards,
Nico Cizik
Digital Metaphors
in help files Comment by nicocizik January 2006These files are included with the latest version(s) of ReportBuilder. Trial
editions of ReportBuilder are available from our web site.
http://www.digital-metaphors.com.
…Hi Jaweed,
The classes you mentioned below were documented for later versions of
ReportBuilder. Note that the TdaSQL class is very large and is not fully
documented. In order to allow users to access this class with ease, we…Hi Ronny,
Try using the Report.PrintDialog.TextFileName property to determine the file
name and path your users save to.
--
Regards,
Nico Cizik
Digital Metaphors
in Print To File Path Comment by nicocizik January 2006Hi Paul,
I apoligize for the delay in this response.
Unfortunately there is no way to have your users drag a pre-made subreports
onto an existing report. One option might be to give your users an initial
dialog tha…Sorry, if you are using RB 7.x or earlier,
TppToolbar is located in the ppTB97x.pas file.
--
Regards,
Nico Cizik
Digital Metaphors
http://www…Hi Rhonda,
The easiest way to find out where a class is declared is to perform a Search
| Find in Files... from Delphi in the \RBuilder\Source directory for " = class".
TppDesignerWindow: ppDsgner.pas
TppToolbar: ppT…> If you would like to navigate through subreports as well, you will need to
Here is the altered exam…Hi Goncalo,
If you would like to navigate through subreports as well, you will need to
make a recursive call to the looping function when a subreport objects is
encountered.
-----------------------------------------…Hi Isaac,
In my testing with the ReprintOnOverflow property set to True, a line will
re-print when the detail band breaks to a new page. I'm using RB 9.03
Delphi 7. One other option would be to place a line the size of the p…Hi Issac,
Sorry, after re-reading your post, I see that you want to use LeftToRight
columns. This feature is very limited in ReportBuilder and does not allow
the use of a dynamically sized detail band. You will either need t…Hi Isaac,
Set the Report.Columns property to the number of columns you want and set
the DetailBand.PrintHeight to phDynamic. Then you can place a DBMemo inside
the detail band which will wrap if needed.
--
Re…Hi Adam,
There should be no problems placing reports on DataModules when using Delphi
7.
--
Regards,
Nico Cizik
Digital Metaphors
http:/…Hi Adam,
If you are using the latest version of ReportBuilder, there should be no
issues placing a TppReport on a DataModule. Are there any issues you are
currently encountering?
--
Regards,
Nico C…Hi,
You can use the Designer.Notebook property to access the TPageControl of the
designer window. I would suggest changing the notebook in the OnShow event
of the designer.
--
Regards,
Nico Cizik<…Hi Carl,
This is not a known issue. In my testing with RB 7.04 and Delphi 5, I did
the following using the DBDEMOS database.
1. Opened the designer and clicked on the data tab.
2. Created a new DataView connected …Hi Greivin,
Try setting the TppReport.SaveAsTemplate property to True. This should ask
your users if they want to save the template if it has been altered.
--
Regards,
Nico Cizik
Digital MetaphorsHi Aydin,
First place to start would be to take a look at the Custom DataView examples
located in the \RBuilder\Demos\3. EndUser\2. Custom Data Views\...
directory. This gives you an idea on how to create your own custom
Hi Ken,
It is possible just to load a template into the TppReport object then call
TppDesigner.ShowModal to view that report. See the TppReport.Template
property in the ReportBuilder help file for more information on how to <…Hi Nicola,
Correct, the report parameters would need to be created in code (RAP or
Delphi). One other option might be to create your own "Parameters dialog"
that is instantiated by an added menu option in the designer.
…Hi Nicola,
Take a look at the parameters feature in RB. See the TppReport.Parameters
topic in the RB help for more information. You could perhaps set a report
parameter using your custom autosearch dialog, then retrieve and …Hi York,
Yes, the following code should work. Be sure you are using an event that
fires before the OverDue variable prints.
--
Regards,
Nico Cizik
Digital Metaphors
in HOW TO CHANGE COLOR BASED ON THE VALUE Comment by nicocizik January 2006Hi York,
For future reference, please do not post your question subject in all
capital letters.
You can use an event such as the Band.BeforePrint or DBText.OnPrint to
determine what the record value is and then alte…Hi Isildo,
ReportBuilder simply traverses the data that you give it top to bottom, it
does not have any way of internally sorting your data. In order to
accomplish this you will need to calculate the total quantity inside you…