nicocizik
Comments
-
Thank you for the clarification. The issue with grouping on a TppVariable
is that the OnCalc event fires too late for the group to pick up a change.
If you were to change the value before the DetailBand prints, the group
would bre… -
Hi Manuel,
I'm unclear about your question. Please give me more information about
exactly what you are trying to accomplish and which features of
ReportBuilder you are using. Also, please define which version of
Report… -
Hi Manuel,
The ReportBuilder QueryDesigner does not allow grouping by a calculated
field due to the fact that this is not supported by all SQL engines. You
will need to manually edit your SQL code in order to group by a calcu… -
Hi Mark,
This can be done by disabling the band control for each band present in the
report. It's a long way to get to the BandControl from the designer but it
is possible...
uses
ppDesignLayoutManager;
Hi Gilberto,
For future reference please post using your real name.
Try using a TppVariable component to count the pages in your report. Set
the TppVariable to calculate on PageStart. This will also allow you to
…Hi Patrick,
You may need to open the rbAds1010.dpk and alter the requires clause to
include the files correct for the version of Advantage you have installed.
--
Regards,
Nico Cizik
Digital Metaphors…Hi Patrick,
You need to build and install the included design time package into the
Delphi IDE in order to use the datadictionary with an ADSSession. You will
find the rbAds1010.dpk in the same directory as the Advantage demo…Hi Ebo,
Which version of ReportBuilder and Delphi are you currently using?
You can access the main menu of the designer using the TppDesigner.Menu
property.
It is possible to customize the Report Wizard or crea…This question has been answered in the Subreports newsgroup. Please do not
cross post.
--
Regards,
Nico Cizik
Digital Metaphors
http://www.digital…Hi Rick,
This should be possible however it will require an amount of pre-processing
of your data in order to get the correct output.
2. You could manually place each hour as a static TppLabel inside the page
heade…Hi Scott,
The Elevate DB plugin and example can be downloaded from our website at the
following address.
http://www.digital-metaphors.co…Hi Steve,
If your users are selecting to print to a TextFile from the printer dialog,
you will need to create a pass thru function to access the
Report.PrintDialog.DeviceType to find which device they selected.
Othe…Click once, wait a second or two, then click again. Similar to renaming a
file in the Windows Explorer.
--
Regards,
Nico Cizik
Digital Metaphors
h…Hi Scott,
In the fields tab Query Designer, you can click twice on the selected field
alias name and alter it to something more understandable. The data
dictionary can also be used to define field aliases for each field used …Please see the AutoSearch demos located in the
\RBuilder\Demos\AutoSearch\... directory.
--
Regards,
Nico Cizik
Digital Metaphors
http://www.digita…Hi Scott,
Take a look at the following example...
http://www.digital-metaphors.com/tips/LaunchQueryDesignerViaCode.zip
Hi Flavio,
Are you changing the Name property or the UserName property? In order to
change the name in Delphi, you need to alter the Name property of the
component. This is currently not available in the built-in RB inspecto…This is not a known issue. Please provide more information about your
environment and issue when writing a question.
Which version of RB/Delphi are you using? How is your report designed?
Which events are you using? What sh…Hi Vytautas,
In my quick testing, it was possible to change the color of a text object
from the OnDrawCommandClick event using a similar method to refresh the
entire report as the AutoSearch feature uses. Below is the snip of…Hi Bill,
Take a look at the TppTemplate.SaveToSource routine located in the
ppTmplat.pas file for how it is done in ReportBuilder. This should get you
on the right track.
--
Regards,
Nico Cizik
Hi Mark,
All the criteria that is created is saved in the template however none of
the AutoSearch Fields are. If you take a look at a template in ascii format
you will see that the TdaCriteria object has an AutoSearch propert…Hi Mark,
In my testing, I am unable to recreate this behavior. Changing one or many
Autosearch fields correctly changes them in the Autosearch dialog. It may
be that this removed dataset has somehow corrupted your template. …Hi Mark,
How are the autosearch labels incorrect? You mention that you are using a
custom autosearch dialog. Does the same behavior occur when you use the
default autosearch dialog? Which version of ReportBuilder are you us…Hi Martin,
Which database are you using? Check you data settings in the main menu of
the data tab and be sure you have the correct DB and SQL type defined. Some
databases such as SQLServer do not use True and False for boole…Hi Scott,
This is not a known issue. Which version of ReportBuilder are you using?
How is your report designed and where is the DBCalc component located? The
DBCalc components should be database independent. Are you able to…Hi Scott,
Once you've created your query, if you click on the SQL tab on the far right
of the Query Designer, does the SQL code include the proper syntax to select
a sum? Another thing to try is once you've selected OK from t…Hi Leah,
Looking at the code, the Query Designer initially displays the fields in the
order they are selected in the dataset, which I believe is the order they
were created in the database. You can sort the available fields l…Hi Paul,
I'm unsure how your application is set up but I assume that in most cases a
user that creates and views a report in the Previewer, will print from the
Previewer. The alternative is most likely a button or option to p…Hi Thomas,
Use the DataDictionary to automatically fill the rbTable and rbJoin tables.
See the end user examples located in the \RBuilder\Demos\End User\...
directory for examples of using the DataDictionary.
--