digitalmetaphors
Comments
-
The RAP event handler for the PrintDialogCreate is what you want to use.
However, you are trying to use the Delphi event handler to set this. It
doesn't work because you are setting the RAP REportFileType in the events
which fire afte… -
Nard's approach in his reply works for me. First thing to do is to get the
end user demo to work as he has described. Perform a copy/paste of those
three property assignments and use them in your application. Those changes
force the p… -
It sounds as if the data dictionary has owner names defined in it for some
of the table entries. Can you examine the data dictionary data to find out
if the table owner names are stored with some, none or all of the data
dictionary e… -
Are you using the data dictionary? When you are using the data dictionary,
if the DataDictionary.UseTableOwnerName property is set to true, then the
table owner name is stored with the table name as an entry in the dictonary.
The cach… -
SQLServer works fine for us here. How do I reproduce the problem with our
installed demo project?
Cheers,
Jim Bennett
Digital Metaphors
-
What database? Can you run our end user demo report example for your
database? Look in the installed RBuilder\Demos\EndUserDatabases\ directory
for an example.
Are you using a custom report explorer?
Are you changing… -
Can you perform the calculations in SQL? This is one way to tackle the
problem. Perhaps some stored procs on the database would help?
If you don't wish to do that, then use TppVariables in the report (I think
this is what you a… -
You have to change the datasettings defined in the dataviews of the report
templates to use the new datasettings that they should use. Your templates
are most likely saved in binary format. Use this demo to open the binary
template as… -
Instead of using our components, can you connect on a Delphi form using a
TADSTable and connect its datasource to a TDBGrid to see the item dataset?
How is your Advantage alias configured? It should be able to connect to
ADT/ADI/ADM f… -
We test RB using Sleuth QA Suite for leaks. We are not aware of any leaks.
Run a memory watching tool such as TP Sleuth QA or Automated QA. This will
tell you where the leak is in your code. If you can reproduce the problem
using a de… -
You could unregister our query wizard and register a replacement wizard.
Look in your installed directory at RBuilder\Source\daQueryWizard.pas. Here
is an example of replacing the query tools to get you started. Look in the
TdaWizardS… -
I am running your demo and it works perfectly. The tables are always what
are defined in the data dictionary. I tried your steps a few times and also
som variations. The new query wizard always shows the data dictionary
tables. I also… -
Yes, if you could send an example to support@digital-metaphors.com that I
can run to reproduce the problem then that would be much appreciated, as I
failed to recreate the problem in my own tests.
Cheers,
Jim Be… -
It should not change by itself. It is designed such that the report template
should not be able to change it on the data settings of the designer. It is
a property on the designer component, not the template, although the data
setting… -
No, I'm unable to reproduce the problem. Can you verify that the database
settings are set to use the data dictionary right before you select the File
| New | Query Wizard option? Enable Designer.AllowDataSettingsChange to
check this … -
Without RB involved, can you connect a TDBGrid on a TForm to your data? Then
can you connect a TppDBPipeline on the form to this same datasource and see
data in a simple report without the Data tab (DADE) involved?
Check your da… -
Another way to do it is to let the report generate and alter the output.
Because bands sometimes have to generate to check for space used, but don't
create output, then you can leverage the OnDrawCommandCreate event of a
component to … -
The problem you are running into most likely, is that the calculation you
have is including the record which prints on the top of the subsequent page.
What happens when the report is generating is that the band tries to print
at the b… -
Use two side by side subreports. This way each subreport will generate
downward for the two detail data columns and you can display the header data
on the left by using dbTexts pointed at the master report's datapipeline.
… -
One way to do it is to use the DTS Import/Export feature of the SQL Server
Enterprise Manager. You should be able to dump the table data to a comma
delimited text file and use that as a basis for which you can turn it into a
SQL scrip… -
The tutorials we have in the Developer's Guide are meant for Paradox and
Interbase. There should be Advantage end user tables located in our RBuilder
Advantage end user demo directory. Glad you have it working.
Cheers,
We have not experienced this behavior. If you disconnect our data dictionary
it begins working. Did you use our data dictionary builder to populate the
data dictionary entries? Can you rebuild a small version of the data
dictionary to…Try testing the data dictionary without ASTA involved and connect to
Advantage directly to RB, as shown in our installed Advantage end user demo.
This will test to see if the data dictionary is setup correctly.
Cheers,
We have used DOA and Oracle 9 without this problem. Is this problem
reproducable everytime? Can you reproduce the problem using our Autojoin
demo using Paradox and DBDemos data? At runtime, can you verify that the
data settings are …I misunderstood. Add another ORDER BY criteria in order to change the order
inside the group. You're right, in this case the groups should remain based
on the same break names as before.
Cheers,
Jim Bennett
Create a group in the report for the default OrderBy of the data and
configure the group how you want, ie, NewPage, KeepTogether.... Then make a
simple statement like this after you change the OrderBy clause of the query:
if Tru…> > If you change the order by, make sure the any groups defined in the
report
No, there is no example. Essentially, you can access the Report.Groups array
property to get at the first and only group object at runtime. The…Did you clear the previous order by fields defined in the report SQL object?
Call TdaSQL.ClearOrderByFields. Have you checked the generated SQL in the
Report.BeforePrint event that the OrderBy is correct?
If you change the order…Thankyou for reporting this. At the very least, it should not AV. We will
test this issue.
Cheers,
Jim Bennett
Digital Metaphors
We are not aware of this problem. How can we reproduce this problem here?
Can you reproduce this error with one of our demo projects? Can you tell u
show to reproduce the problem or send us an example of our modified demo
projects wi…