nardmoseley
Comments
-
Looks like on Win9x the port is listed and on WinNT/2K it is not.
We'll have to research it for a future release...
-
Need more info:
1. Are the printers local or network?
2. OS and Delphi version.
3. Specific examples of what is displayed by Word, Excel vs. what is
displayed by RB.
-
1. An example of creating a subreport in code can be found in the Code
Based section thread of the Tech Tips newsgroup.
2. Below is a Tech Tip on creating the m/d datapipeline links in code.
------------------… -
Please download again, we have rebuilt the RB for D5 installations.
-
Sorry, but do not understand what are trying to accomplish.
In general, you should not manipulate any of the datasets while the
report is executing.
In your code below, when you build the 'where' string the
my… -
The Variable will handle this for you.
-
The goal of the Variable is that you can use it to perform calculations
and not have to know how RB is internally handling things.
However, if you want to know more about the events you can check out the
Events section of … -
Sorry, do not know the answer to this.
Perhaps check the Delphi docs for the version of Delphi that you are
using. RB is using Delphi's TreeView, ListView, Statusbar, RichEdit and
perhaps a few other controls included with… -
This package is specific to RB's DADE support IBExpress.
RB is compiled with plain D5. If you have a D5 service packs installed,
then you likely have an updated version of IBExpress. You will need to
recompile RB's rbIBE5… -
Update to RB 6.03....
-
I think you will need to calculate the width of each word and calculate
how many lines you need. Then move the label component up/down and size
its height.
-
Set TitleBand.NewPage to True.
-
There is no way for the report to know the total number of pages until
it has completed the first pass - thus you must set report.PassSetting
to psTwoPass.
If you have a very simple report that prints the same number of re… -
Sounds like you have a corrupt installation.
If you still have an issue, then create simple Delphi project and e-mail
to support@digital-metaphors.com.
--------------------------------------------
Article:… -
If report.CurrentColumn = 1 then
lDep.Caption := plArtCat['Fields']
else
lDep.Caption := plArtCat['Fields'] + ' (Continued...)'
-
Check the friends | langauges section of our web site. There is a Polish
translation available for download there. Looks like it is rather old,
so it will probably require a little effort to bring it up to date.
-
1. Put a memo in the detail band.
2. Set Memo.Stretch to True and Memo.KeepTogether to True.
3. In the DetailBand.BeforePrint event, load the memo with the data.
-
-----------------------------------------------
Article: Custom Paper Sizes on Windows 2000
-----------------------------------------------
Win 2000 (and Win NT) have a completely different printing architecture
from… -
Welcome to ReportBuilder!
Below is a list of resources for learning ReportBuilder. I strongly
recommend spending some time with the Developers Guide and working
through the tutorials therein. Spending some time up front wi… -
You would need to create a custom Preview Dialog or a custom Previewer.
1. For custom Preview Dialog see ppPrvDlg.pas and see the article below.
2. For custom Previewer see ppPreview.pas.
--------------… -
If you use TppVariables to perform all calculations and set the calc
timing correctly then the doubling up should not occur.
If you would like to create a simple Delphi project that demonstrates
the issue, perhaps using th… -
This indicates a corrupt installation - please see the article below...
--------------------------------------------
Article: Cleaning up a Corrupt Installation
--------------------------------------------
If yo… -
If you are using the latest release - RB 6.03 for Delphi 5, then the
following versions of TeeChart are supported: 5.02a, 5.01, 4.02 (See the
TeeChart topic available from the table of contents of the
RBuilder.hlp.)
I… -
----------------------------------------------
Tech Tip: Resolving Compile Error w\TeeChart
----------------------------------------------
When using TeeChart and ReportBuilder in Delphi you will encounter this… -
RB sends a report jobs to the printer spooler, but it does not contain
functionality to monitor the print spooler.
Check the Win API docs, I recall seeing some API functions that can be
called to monitor print job status.<… -
This issue has been handled via e-mail.
-
You can have one version of RB installed for each version of Delphi. I
have D4, D5, and D6 installed and for each of those I can install any RB
release that I need to test.
-
You need to assign the Report.DataPipeline property and the
DBText.DataPipelein property.
The Report will traverse the DataPipeline to which it is assigned. A
DBText will print data from the current record of the datapipel… -
The summary band will print on the last page only, so I think that
should work fine.
-
There are currently a couple of techniques for printing within a fixed
area of a form.
1. Use a subreport set to PrintBehavior of pbFixed. Size the subreport
to occupy the required amount of page space (you can set ParentW…