rbuser
Comments
-
I had that suspicion too (not to create objects in the B4Gen event..).
Anyways the code that we used to create the component is as follows:
With TppImage.Create(ppreport1) do
Begin
Region := ppRegion1;
Band := pp… -
I appreciate your response.
Actually we overcame that problem in a different way. We now calculate
before hand how many charts we can fit on a page and print only that many
charts. So there would be no over flow.
But we hav… -
-
Thanks on both answers - it works great!
"Alexander Kramnik (Digital Metaphors)" je
napisao u poruci interesnoj grupi:3d205e90$1@dm500....
number
pages
-
Works fine ... thanks, LL
-
Lon,
Please use the NG for replies rather than private e-mail.
One way to install daDBISAM.pas
1. Click Component on main menu
2. Click Install Packages
3. Select "Borland User Components"
4. Cli… -
Lon,
Sorry... don't know about the demo altho' I did at one point.
I'll have to put together a demo on the site.... don't know
whether I can get to it this weekend... it's a holiday
weekend up in .ca land.
… -
I found the demo for DBISAM but it tells me that the session DBISAMSession
cannot be found ... do I have to configure something within RBuilder to have
the app work with DBISAM? thanks, LL
-
You need RB pro or Enterprise
You need some interface code such as daDBISAM.pas available
from my site.
http://www.welshdragoncomputing.ca/Business… -
Thanx,
the solution with the rendered Bitmap and then rotating it is much better
for all objects (Images/Shapes/Labels..) should be rotatable.
There should only be one document(Report) with a SAP given Number and stuff.
Ot use a ClientDataSet retrieving all the data at once.
Hi Jim,
Do a search on the net for KBMemTable component or use the in memory table
from the RX component set.
regards,
Chris Ueberall;
OK thanks, but what's an in memory Dataset ? is it just a normal TTable. I
want to avoid accessing the database more than once.
"Alexander Kramnik (Digital Metaphors)" wrote
Thanks for the information.
Bob
"Alexander Kramnik (Digital Metaphors)" wrote
Hi Alex,
place your detail components on a 'TppRegion' component and use 'Keep
together'.
HTH,
Chris Ueberall;
I did make sure that TeeChart 5.01 Pro was installed before RB. Obviously
if TeeChart is not installed, RB cannot support it.
Any other suggestions at this point?
"Alexander Kramnik (Digital Metaphors)" wrote
don't know how to do what you want, but an idea:
How about using an in memry ClientDataSet, fill it with the data as you want
(Insert, assign values, post). And then just open the RB report with the already
filled ClientDataSet?
…I believe TExtraDevices has a printer driver made for dot matrix pritners
(http://www.waler.com/). As for the one wide, someone else will have to
answer.
Ed Dressel
Team D…We have a lot of practice building RB reports that print mailing labels out
to laser or bubblejet printers using 8.5x11 pages with many labels per page.
No problem with this.
I have some old-style customers so used to loading up…Terry:
I haven't done much with labels, but your description is quite short. Could
you provide some more information?
Thanks
Ed Dressel
Thanks Jim thats great
Great!
I'll try....
Regards,
Andre
Hi Chris!
I'm not loadding the report from a template.
Let me explain: (Please, forgive my english!)
In run time, based in a flag changed by the user , I change some visual
characteristcs of some components. So the us…Hi Andre,
you have to reload the template.
HTH,
Chris Ueberall;
Yep, but it doesn't work on all the databases
Hi Paul,
your given statement is database depending and therefore not supported for
all databases.
regards,
Chris Ueberall;
If you need to first 30 or so from the query you could also do it like this
:
SELECT *
FROM Table
WHERE
LIMIT 30
then it should limit the output to 30 max
regards Paul
Hi Guillermo,
the WHERE clause is involved. See page 'SQL' in the data designer.
regards,
Chris Ueberall;
Now i have a question for the DM team... does the AutoSearchFields apply a WHERE
clause to the underlying Query or filter the data locally?
Thanks but I figured it out ... set search fields in the query and then set
code ... for example
if (ppReport1.AutoSearchFields[0].FieldName = 'IncidentDate') then
begin
ppReport1.AutoSearchFields[0].SearchExpression:=…