nicocizik
Comments
-
Hi David,
The Vertical description refers to the field names in relation to each
other, assuming you place each field in the detail band in a vertical
line...
Field1: Data
Field2: Data
Field3: Data
Hi Joseph,
We currently do not know of any add-on components that provide the OneCode
Barcode specification. We would however be very interested in taking a look
at your component and possible share it with others if you woul…Andrew,
The RBuilder.ini issue will only affect your users if they are using the
End-User Designer. If so, you can change the TppDesigner.IniStorageType to
"Registry" or alter the location of the IniStorageName property to a …Hi Patrick,
I'm a bit unclear about what you are trying to accomplish. Are you trying
to add a previously created PDF document to a Report or are you trying to
create a PDF file consisting of a single page of the report?
Alex,
This would most likely need to be calculated in another query of some sort.
-----------------------------------------
Article: End-User Tech Support
-----------------------------------------
Please un…Hi Vasja,
Take a look at the following example on how you can send escape codes to the
printer from ReportBuilder. It is currently on our todo list to enhance the
ability to use esc codes from within RB for a later releases.<…Hi Martin,
It sounds like something is taking a while in the DB. If you execute this
query directly from a Delphi app (without ReportBuilder) do you see it
taking a long time as well? If you execute the second report by itse…Are you certain you have ReportBuilder installed in the root directory?
Typically the ReportBuilder source is located in the Delphi directory...
C:\Program Files\Borland\Delphi 6\RBuilder\Source\...
Which version of ReportBuil…Hi Martin,
If you set your library path to RBuilder\Source and pause your application
during this 14 minute wait, are you able to determine what is taking so
long? If you execute the second report on its own, how long does it…Hi Martin,
I'm a bit unclear about when you are actually closing the preview form. You
need to be sure you are not freeing the report before the preview form has
completely closed. In other words, the following code....
Hi Martin,
If you are just changing the data the report accesses, you do not need to
reload the same template before regenerating the report. Simply closing the
report, changing the data and reopening it should do the trick. …Hi Chau,
A passthru function is meant to be called from RAP. If you don't need to
make this call from RAP, you could simply create a separate Delphi routine
and call that directly.
I'm a bit unclear about what you …Hi Jonathan,
Please send all attachments to support@digital-metaphors.com.
Take a look at a similar example that should work correctly with RB 10.07.
in CollateSubReportPages.zip Comment by nicocizik January 2008Hi Ian,
Please do not post attachments to these newsgroups. The newsgroup
guidelines can be found at the following website...
http://www.d…Hi Ian,
Thanks for the email. A patch is now available for RB 10.07 that solves
this issue. Please send a small email to support@digital-metaphors.com if
you would like the patch.
--
Regards,
Nico…Hi Ian,
In my quick testing, I was unable to recreate the issue you describe. Which
font and what font size are you using? Can you please provide me with the
exact steps I can take to recreate the issue? So far I have added…Hi Chau,
The ppJPEG, ppGIF, etc. units are not essential units to run a ReportBuilder
application. If you are using these units and building with runtime
packages, you will need to add these units to an included package or cr…Hi Chau,
What exactly are you trying to accomplish? There technically should be no
need to rebuild the designtime packages and it is not recommended. We use
these exact designtime packages to create our final builds however …Hi Mariëlla,
Which version of Windows XP are you using? I have taken a look at a number
of our XP machines and all do not allow me to reduce the color quality to
256. If you trace into the ReportBuilder source when the error…Hi Mariëlla,
This is not a known issue. Which version of ReportBuilder are you using?
What exactly is happening to give your customer(s) problems editing reports?
--
Regards,
Nico Cizik
Digital Meta…Hi Tom,
You can have RB traverse from left to right by creating multiple columns and
setting the DetailBand.ColumnTraversal to ctLeftToRight. This will print
each new traversed record in the next column on the page.
Hi David,
You can use any event that fires before the image prints. The
Band.BeforePrint event would be a good starting place.
In order to do this from RAP, you will need to create a passthru function to
access the…Hi David,
If you can stream the bitmap to a memory stream, you could easily load it
into a TppImage on a report using the
ppImage1.Picture.Bitmap.LoadFromStream(); routine.
--
Regards,
Nico Cizik
Hi David,
I'm unclear about what type of "graphic" needs to be displayed. What format
is this graphic in? Does the ASCII text you mention represent some sort of
in-house graphic type used by the signature pad application? I…Hi Craig,
Autosize is for horizontal sizing only. If you would like the component to
wrap and resize automatically, you need to use a DBMemo set to Stretch.
--
Regards,
Nico Cizik
Digital Metaphors<…Hi Bharathi,
The implementation of a barcode with the below specifications should be
possible using the 2DBarcode component. Though I haven't spent much time
with the MaxiCode barcode type I have spent a considerable amount o…Hi Paul,
1. There is a patch availabe that fixes the issue the demo encounters.
Please send a small email to support@digital-metaphors.com to receive this
patch.
2. Which products are you using with MAPI? Outlook…Hi Michael,
You first need to be sure you are using a version of TeeChart that is
compatible with the version of ReportBuilder you have. See the
ReportBuilder Reference | TeeChart | Delphi 7 |... section in the help
for th…Hi Michael,
This error indicates that the original version of TeeChart (4.03) that is
icluded with Delphi is still installed into the Delphi IDE. Try opening the
Installed Components list in Delphi and remove any references t…Try something like the following instead...
var
lMetaFile: TMetaFile;
lRect: TRect;
begin
lRect.Left := 0;
lRect.Top := 0;
lRect.Right := ppImage1.spWidth;
lRect.Bottom := ppImage1.spHe…