rbuser
Comments
-
Hmmmm,
I'm not sure that AutoSearch is what you looking for.
Are you just trying to set the value of a Label.Caption?
Jon
-
Hi,
the autosearch feature is what you are looking for.
enjoy,
Ron.
-
Hi Denis,
If I remember right (I use the DevExpress Trees too), there are printable
versions of the tree components -> dxDBTreePrintData (but i never used it).
regards,
Chris Ueberall;
-
Hi,
load the tree into a memtable and print from the in memory dataset.
enjoy,
Ron.
-
Thanks!
-
Hi,
there is a demo which shows how you can create your own search dialogs. Pse
see the following dir:
RBuilder\Demos\5. AutoSearch\4. Custom AutoSearch Dialog
enjoy,
Ron.
-
-
Yes, this works perfectly. I added the following simple logic, so that the
bands only show up on the screen (and not on the printed page):
procedure Shape1OnPrint;
begin
if Report.DeviceType = dtScreen
then Shape… -
Drop a TppLine (or TppShape, as you need) in the report. Color it. Put it in
the background and size it.
. In the component's .OnPrint event, code something like:
procedure TForm1.ppLine1Print(Sender: TObject);
begin<… -
In article <8EAE82296ACCD311A039005004E0CAC004674F@DMSERVER>,
support@digital-metaphors.com says...
Problem now solved - I was bored on holiday and re-created the report.
Guess I should really get a life.
FYI … -
Hi Nasir,
Sorry, this isn't a limitation of ReportBuilder, this is a limitation of
TMemo.
When loading a TMemo, a container for TEXT, the binary will be scrampled,
that's by design.
(You may load any executable in note… -
Hi Chris,
After changing report format to 'ftASCII', now the report is successfully
saved from stream to database and loaded back properly as well. But is it a
limitation that we can't perform these steps with report format ofNasir,
is the template format of type 'ftASCII', otherwise the TMemo wouldn't be
the right container.
I would use a file (or any other object ready for storing BLOBs) as
storage, not a TMemo.
You can load it into the …
Hi Chris,
This code saves report information into stream and then i load memo control
with that stream but when i load report from saved information into memo
control, it does not load and give me an error 'Stream Re…Hi Nasir,
Sorry, but I'm a little bit puzzled about your 'Memo Control'.
Can you show us some code of your doing.
What do you want to achieve?
regards,
Chris Ueberall;
but
and
clicked
no…Hi Chris,
I have used LoadFromStream and SaveToStream Methods of Template Object but
it does not load the Report information through LoadFromStream method and
returns me an error 'Reading Stream Error'. What the method i did to…Hi Nasir,
load a stream from the record, the stream loading from a table's field is
database (component depending) depending (check the documentation), then you
can load the template from that stream.
regards,
Ch…> teechart in RB 4.23. Can someone give me some pointers and finding more
4.23 version is not supported nor updated anymore. Have to upgrade to latest
Delphi version or keep the original Teechart version, compatible with RB
…I forgot to mention that I know there used to be the teechart component
that came with rb4.23... but I've installed teecharts v5 and now I can't
find the components (for the new version?). I'm not sure why this is
so.
go to the http://www.digital-metaphors.com/ site and click the friends
button... there are some links to report builder add-ons
regards
volkmar
team softw…Thanks - this will be helpful.
I am using a Midas Client Dataset - and I changed to the kbMemoryTable -
once I deleted all the old templates and resaved new ones all was fine.
G
Hi Gerald,
If there are unknown properties or events, you need only to save your report
again.
This happens when you've saved a report with properties not implemented in
the version you are now using, or you assigned events…Thanks Chris,
Yes, RAP instead of RAD, pardon me. Indeed, I am using Enterprise Version
5.56.
Cheers
Hott
Hi Hott,
you meant RAP, I assume.
First you need the Enterprise version of ReportBuilder.
There are several examples for creating Pass-Through functions.
regards,
Chris Ueberall;
Excellent. Just what I wanted to hear. Today I also perfected storing all
the tables definitions in a report file's offset area which completely frees
up an end user solution from my compiled code without going down the DADE
query rou…I have been using a very similar strategy to this for well over a year
and have hundreds of reports. I use the TMemDataSet component which
is easy to use, and makes sorting simple, though most mem tables do.
On Mon, 23 Jul 200…In article <3B61AF56.DA93EB41@digital-metaphors.com>, Nard Moseley
OK. Thanks.
Eric