nicocizik
Comments
-
Hi Christoph,
Yes, in order to accomplish what you need in RAP, the following code would
need to be placed in a pass-thru function. The TBitmap object is not
supported in RAP. An example of creating a RAP pass-thru function … -
Hi Christoph,
Each component does not draw to its own individual canvas. One option you
may consider is creating a TBitmap or TMetaFile object and using its canvas
property to draw the "x" manually. Then you can load this im… -
Hi Russell,
One other option would be to take complete control over the "save" and "save
as" menu click events. Below is an example on how to access the menus and
toolbars for ReportBuilder 10.x.
in Custom Save Comment by nicocizik May 2008 -
Hi Russell,
The idea behind the CustomSaveDoc event is to give you complete control over
the save process after the file name has been defined. This is why the save
dialog still appears. You will notice that if this event is… -
Hi Doug,
Please upgrade to the latest version of ReportBuilder (10.08) and re-test
your RAP code. As a rule of thumb, it is always best to get your report
working in Delphi first, then move the code to RAP. This makes it eas… -
Hi Nikolai,
Take a look at the following example of adding text search to a custom
preview form.
http://www.digital-metaphors.com/… -
Yusuf,
Please send a small email requesting the patch to
support@digital-metaphors.com.
--
Regards,
Nico Cizik
Digital Metaphors
http://… -
Hi Car,
I'm a bit confused about the issue. Are you using a registered version of
ReportBuilder with Delphi? If so, which version of ReportBuilder and Delphi
are you using? Are you able to recreate this issue in a stand-alo… -
Hi Caralene,
Which version of ReportBuilder and Delphi are you using? Are you able to
recreate this with a smaller report? When the report hangs, are you forced
to close your appliction or does it eventually finish?
Hi Tony,
You might consider exporting your report(s) to archives, then printing the
archive files in a single bundle as an alternative.
It is also possible to export reports to a memory stream if you do not want
to …Hi Todd,
If you are calculating the subtotals in the group footer, you can try making
the calculation manually using a TppVariable component rather than the
DBCalc. Inside the OnCalc event of the variable, place the logic to …Hi Adrian,
Placing the plugin in the uses clause will automatically register it with
ReportBuilder. There should be no need to register it again unless you are
registering other email plugins prior.
The PDF file sh…Hi Adrian,
This is how the email feature is designed to work. The report is not
generated until the send button of the built-in email dialog is clicked.
The report will then automatically be attached to the email and se…Hi Cristiano,
Which version of ReportBuilder and Delphi are you using?
Does this only occur when using the service? If you load the report from
template in a simple test application, are you able to see the image whenHi Christoph,
Though the TppMasterFieldLink class is not natively included in RAP, it is
possible to access it using a RAP pass-thru function. Examples of RAP pass
thru functions can be found in the RAP demos located in the <…Hi Christoph,
Sorry for the confusion, I meant perhaps changing your posting name from
baka0815 to Christoph
.… Hello,
For future reference please use your real name when posting to these
newsgroups.
The issue with using the visual linking in your case is that behind the
scenes ReportBuilder is performing everything in a sing…Hi Jeff,
Take a look at the following example and article for help with this issue.
http://www.digital-metaphors.com/tips/drilld…Hi Jeff,
1. You might be able to keep track of which subreports are expanded using
the DrawCommandClick event of the drilldown component assigned. Then you
could set the visibile property of that component to False before th…Placing the following code in a button onclick event worked successfully for
me. Are you certain the file defined exists?
procedure TForm1.Button1Click(Sender: TObject);
var
lEmail: TppEmail;
begin
lEm…Hi Adrian,
The TppEmail object is designed to be used in two ways.
1. A report can easily be sent via email using the TppReport.SendMail;
routine. This routine will automatically create a TppEmail object, add
itse…Hi Adrian,
This is a Windows Vista issue that is to our knowledge yet to be resolved.
As you can see from the post below, we are not the only people having this
problem. The individuals in the post are talking to a Microsoft …Hi Jeroen,
Are you able to pin point the characteristics of the reports that cause the
problem? Do only reports with numerous dataviews have the problem? How
many? Are you able to recreate the issue with a new report (saved…Hi Jeroen,
In my testing with RB 10.08 and Delphi 7, the scrollbars in the data
workspace are always present. If you run the main end-user demo located in
the \RBuilder\Demos\3. Enduser\1. Report Explorer\... directory, are y…Hi Jesus,
Thanks for the clarification. There is now a patch that fixes this issue.
Please send a small email to support@digital-metaphors.com requesting the
patch and we will send it to you as soon as possible.
--…Hi Jesus,
We are not aware of any changes since the last version that had any effect
on the RBuilder.ini storage. In my quick testing with RB 10.08 setting the
storage type to use the registry and deleting my RBuilder.ini fro…Hi Fabrizio,
The latest version of ReportBuilder includes the ability to rotate
non-wrapped text inside a report. Please consider upgrading your version of
ReportBuilder/Delphi to obtain all of the new features available.
Hi Tom,
Yes it is possible to create reports completely in code as you describe.
There are complete examples of doing so in the ReportBuilder Developer's
Guide as well as some good articles in the Code Based thread of the
Hi Fita,
Rather than use a DBCalc, try using a TppVariable and make the calculation
manually in its OnCalc event. Then you can set it to reset when the column
starts or ends using the timing dialog (right click and select Tim…Hi Mark,
------------------------------------------------------
Article: TroubleShooting: Report Prints Endless Pages
------------------------------------------------------
Occasionally, we have customers state that t…