nardmoseley
Comments
-
Thanks for providing that information.
Running out of resources is indeed very common with Win 9x, I was not aware
that Win 9x would sometimes report that the file is corrupted in this case.
I bet that's it!
T… -
Try using the Default theme for the Report Designer (see article below).
Some older versions of windows do not support some Windows API functions
used to draw the newer Office 2003 style themes.
Other than that there are… -
- Yes, RB 10 includes support for D2006, D2005, D7 and D6
- Upgrading RB 9 Professional to RB 10 Professional is US $299 as listed on
the order page of our web site, in Report Builder Pro Upgrade Comment by nardmoseley June 2006 -
- one approach would be for your custom class to descend from TComponent,
then it can be the Owner
- another approach would be to create a TDataModule instance for each report
- ReportBuilder Professional and Enterp… -
The Report, Labels, DBTexts, DataPipelines, Data Access components etc that
you create need to reside in a common container - which in Delphi is
specified by the Owner.
Typically the Owner will be the Form/DataModule upo… -
- Report.Template.Format can be ftBinary or ftASCII (defined in ppTypes)
- From the Delphi IDE, you can also put a Report on a Form, load an .rtm,
and then select the option to view the form as text (I do this all the
t… -
To use that technique requires that you programmatically create the
TppPrinterDevice instance, connect it to the Report and then call
Report.PrintToDevices.
For an example check out demo 123 (dm0123.pas) in
RBuilde… -
Here is an example that shows how to do this...
www.digital-metaphors.com/tips/TextWidthFormattingEllipses.zip
-
We did not receive your email. Please email info@digital-metaphors.com or
sales@digital-metaphors.com and we can help you.
-
Here is an example that shows how to do this
www.digital-metaphors.com/tips/RemoveLineFromLastDetail.zip
-
- The Report component and associated data access components, including the
TOracleSession, need to have a common Owner. Typically the Owner is a
TDataModule/TForm upon which the Report resides.
- the TOracleSession Name… -
- please see my answers to the recent posts about zebra printers in the
EndUser newsgroup
- ReportBuilder can work with any printer model, the only limitation is
going to be bugs in the printer driver, which unfortunatel… -
- make sure the you use one of the printer names listed in the
ppReport.PrinterSetup.PrinterNames[] array:
ppReport.PrinterSetup.Printername :=
ppReport.PrinterSetup.PrinterNames[liIndex];
- try adding RBuilde… -
- The Windows API is large and it is unprecise. There are often functions
that overlap in functionality (i.e. multiple ways to do same thing). The
printer driver manufacturers often incorrectly implement the support for the
f… -
The problem is the printer driver.
You absolutely can NOT assume the client has installed the latest driver.
The latest driver can be downloaded from the manufacturers web site.
Printer drivers are just another piec… -
- try downloading the latest printer driver from the manufacturer's web
site - the drivers often have bugs. Uninstall the existing driver, then
reboot the machine and isntall th enew driver.
- if the issue persists, try … -
I do not understand the question. I was thinking that you could put the
graphical elements in the PageStyle - this would define the lines for the
grid. Then the detail band would generate the data over the top.
-
Add a PageStyle band to the report. A PageStyle prints as a background layer
on the page. You can add a PagesStyle band by selecting Report | PageStyle
from the report designer menu.
-
- to hide items from the user, try using a SQL query for the rbItems data.
The SQL query can select only the items which the user can access.
- the ReportExplorer.FolderOptions and ItemOptions can be used to limit the
en… -
- as a starting point work thru the Developers Guide tutorials on building
End-Usera applications. There is one or more examples for Interbase.
- as a second step, open RBuilder\Demos\EndUser
Databases\Interbase\IBExpres… -
- When you use the Data workspace the Designer.DataSettings.DatabaseName
property is resolved to an object reference (ie. a data connection component
such as TDatabase, TIBDatabase). The Query tools use this connection object
- The DataDictionary.BuilderSettings are used to configure the
DataDictionaryBuilder. Set the SessionType to reflect the type of
connectivity you are using BDESession, IBXSession, etc. And then set the
DatabaseName property t…
Report.ShowCancelDialog := False;
There is not currently documentation for this specific question. However we
do have extensive documentation and additional resources available - these
are being extended and improved all the time.
Here is a list of resou…
Here is an example that remove the Storage properties and then adds them to
the Ignore property list. (If you do not add the property names to the
Ignore list, they will appear under the Miscellaneous property category).
- Start with the Developers Guide, it contains conceptual information about
the fundamentals of RB and how to model reports using subreports, regions,
etc. The second half of it contains tutorials.
- Below is alist of ad…
- that is the correct code to add a page
uses
ppTabbedNotebook,
ExtCtrls;
procedure TForm1.Button1Click(Sender: TObject);
var
lPage: TPage;
begin
lPage := ppDesigner1.Notebook.A…
He means Delphi 7
(later in the post he mentions dclRBC107.bpl, the package suffix 107 = RB 10
for D7)
--
Nard Moseley
Digital Metaphors
www.digital-metaphors.com
RB 10.03 is compiled to support TeeChart 7.07 (see release notes
RBuilder\Release.doc)
--
Nard Moseley
Digital Metaphors
www.digital-metaphors.com
For the next mainteance release (RB 10.04)...
- custom colors will be shared by the color button palettes (i.e. global set
of custom colors)
- custom colors will be saved/loaded to preferences (RBuider.ini) (i.e.
pe…