nardmoseley
Comments
-
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…
This will be fixed for the next release (RB 10.04), thanks for reminding me.
--
Nard Moseley
Digital Metaphors
www.digital-metaphors.com
Thanks for reporting this issue, it will be fixed for the next maintenance
(RB 10.04) which will be available soon.
--
Nard Moseley
Digital Metaphors
www.digital-metaphors.com
Check the documentation for the printer to determine whether that is
possible and if so what escape code is required.
In the Windows API, the quality is controlled via the printer devmode
structure, but the devmode can b…
Steema has created a confusing situation - we have asked them to clear this
up. Though the download page still says 7.07, the Delphi 2006 download link
is for TeeChart 7.08. (note: this applies to Delphi 2006 only, all other
…
I researched this and it looks like the new Toolbar Theme support we added
for RB 10 is calling the IniStorage from the Initialization section of one
of the toolbar units. I have created a patch for RB 10.04 that avoids doing
Example:
uses
ppIniStorage;
var
lIniStorageClass: TppIniStorageClass;
begin
lIniStorageClass :=
TppIniStoragePlugIns.GetClassForName(myIniStorageType);
if (lIniStorageCla…