digitalmetaphors
Comments
-
There is no save button in DADE. Do you mean the Export menu item? You can
disable this using the technique I posted in your previous thread.
Cheers,
Jim Bennett
Digital Metaphors
-
When you add daIDE to your uses clause, it simply calls this in the
initialization section:
ppResourceManager.AddResFileName('rbDADE');
ppRegisterDesignModule(TdaDataManager, 'TppDesignerWindow');
ppRegisterForm… -
Good work! Sure, take it out. It is calling OpenDataset and that causes the
query to be set to Active = True, which you definitely do not want happening
with this particular timing. Looks like someone needed this call for their
own g… -
We'll have t research why it is firing it for ASTA. For the other databases
we connect to, it seems to work ok. We'll let you know how our test goes.
Cheers,
Jim Bennett
Digital Metaphors
-
See the Templates thread in our TechTips newsgroup for info on using
template events.
Cheers,
Jim Bennett
Digital Metaphors
-
There is the ASTA SQL options property which allows it to conditionally load
BLOBs or not. However, the current report explorer does not support this
functionality. With ASTA you might be able to get this working by modifying
the sour… -
Replace the query designer. The replacement can disable the calc tab. Here
is an example of replacing the query designer.
http://www.digital-metaph… -
I forgot to mention, this is just an example of replacing the BDE query
dataview class. You can follow the same approach for any other plugin that
you are using, such as DBISAM, Advantage, IBO. Look in your DADE plugin
unit, and fin… -
Yes, this is possible (I just created a demo that does it). It involves
creating a custom dataview descendent. This is not a template, but rather a
replacement of the TdaBDEQueryDataview class. You can unregister the
TdaBDEQueryDatav… -
It shouldn't be too dificult to access the TdaSQL object before the report
prints to clear the calc fields that the user has added. After the tempalte
has loaded, extract the SQL object and save a list of the calc fields. Then
check … -
There is a demo of this you can download:
http://www.digital-metaphors.com/tips/ReportExplorerAsMDIChild.zip
Cheers,
You can export the datamodules to the database. A datamodule has a template
property, just like a report has a template property. It is a dtm as
compared to an rtm. You can extract the datamodule from the report and free
it before …Make a copy of the report and try paring down the complexity until the
report doesn't AV anymore. This will help you figure out where to start
looking in your RAP code for problems. In the problematic event, are there
objects you are …You can control the display format to do anything that you want. Here is an
example that replaces the display formats:
http://www.digital-metaph…To provide this fireld to your end user, you can join the two tables
together or create a linked dataview. Use the visual linking in the data
workspace to link two dataviews. As an end user, if you give them a lookup
dataview, they'l…Set Report.PrinterName to screen and it should use the screen canvas for
measuring instead of the default printer canvas. What is the printer model
that he has installed as the default on that machine? I can install the
driver and t…Can you reproduce the problem on his machine using a demo report from
ReportBuilder demos? First, have him install the latest printer driver that
is available from the printer manufacturer's website. I have XP. What is
the printer m…When a template is loaded, you need to make sure that there is an event
handler waiting for it (for this event that the report was saved with) on
the form that it is being loaded onto. If it can't reestablish the event
handler you may…We modified the daDBISAM plugin for use in RB 7. It has been tested to work
with DBISAM 3.17. The daASTA plugin was not changed by Digital Metaphors
and we're not sure if there has been any enhancements to it at this time
since it i…This was added in the latest release of RB 7. You'll need to download the
latest RB 7 to get this feature. Contact info@digital-metaphors.com and
we'll get you setup with an upgrade from 6.03. In the meantime, you can
download the …The onyl limitation on this is that it doesn't work when using master detail
linked dataviews. Otherwise it should work. I ran the demo DBISAM end user
project. I am using DBISAM 3.17 for D6. I ran with the data dictionary and
ran wit…What version are you using? Older versions of RB didn't support this. If
you have RB 6 or later it should work.
Cheers,
Jim Bennett
Digital Metaphors
Sorry, I didn't see that you are now using IBObjects instead of the BDE. The
report templates have the object definitions for the dataviews saved inside
of it. What happens is that these object definitions are streamed up when
you ope…Add daDBBDE to your uses clause.
Cheers,
Jim Bennett
Digital Metaphors
The same ini file should be created because it will initially reflect the
state of the forms that you have configured when you compiled your
application. The ShowData means that the data will show in the data aware
controls in the run…Can you reproduce it using the standard ReportExplorer demo or our custom
tip:
http://www.digital-metaphors.com/tips/ReportExplorerAsMDIChild…You can start with the code in the current report wizard classes. See
ppRptWiz.pas in the installed RBuilder\Source directory. For an example of
creating a report dynamically from a dataset, here is one which is simpler
than our repo…Can you break your approach down into a simple example that we can run?
Send it to support@digital-metaphors.com
Cheers,
Jim Bennett
Digital Metaphors
You can use the OnCreate of the report explorer form as shown in this demo
to show the explorer form in another form. I tried parenting it to a panel
and also a form and it works in this demo:
in AV with reportexplorer hosted on a form in RB7 when closing app. Comment by digitalmetaphors September 2002The about box form is replaceable. You can create your own
TppCustomAboutDialog descendent and register it. A perfect example of this
particular form class descendent is located in the installed
RBuilder\Source\ppAbout.pas unit. Cop…