rbuser
Comments
-
Hi Nard,
the exception is gone, but the Font seems to be NIL. I pass it as a
parameter in a PassThrough and it seems it do nothing. If i pass instead a
label1.Font from an existing label, and it works.
sample:
… -
Hello
yes this is an idea. Perhaps also for a major release it would be nice to
spend some user buttons and combobox and statusfield, which are not visible
by default. The should be handled by standard RAP events and with some basic… -
1. actually a major problem for me, bacause i had a lot of 3rdparty and a
lot is hanging on recompiling. I have read also al lot of your comments,
that it is often an issue of the3rdparty tools, but the realaty is, that i
had tried… -
is it possible to use datadictionary as an unvisble component? I am not
using the Reportexplorer for loading etc.
--
best regards
chris (EULANDA)
www.eulanda.com
ERP SOLUTIONS
-
Nico,
Okay, I think I get what you are getting ready to tell me. I think I
need to change my data setup and link the shipping addresses to the invoices
table. Currently, this is the way the data is setup:
Cu… -
Nico,
What you said makes sense but problem. I drilled down to the
subRptInvces tab and added a variable which value= Store Address
concatenated together. No way to assign a group within the subreport to
Shipping_Addrs. … -
Nico,
This is actually the way the tables are linked for this report:
CUSTOMERS
- INVOICES
- SALESORDERS_TRANS_HDR
-SHIPPING_ADDRS (Store Location)
I… -
Nico,
Works fine, thanks.
Ken
-
We're trying to automate our testing using DUnit.
Aaron.
-
Thank you Nard,
at first it did not worked. But the trick is:
1. to make on datatab a new datapipline, regardless what table.
2. Then go to the SQL tab and right mouse to insert some working Dummy code
like
SELECT 'HE… -
Hi Nico,
the normal way, that is actually working is, to go to the data tab and on
the pipeline the last Icon (SQL), right mouse and press "Change". In this
case i can insert complete free SQL.
I am searching the same fun… -
Hi Nico,
i think this is not possible, because i have no table to select and RB did
not support sql build in functions with parameter.
So i can go to the data tab and change the sql code directly. If i code the
sql manually i c… -
Here a sample, SQL is Readonly..., but on Datatab i could do it. I need it
in RAP because i have to youse a SQL function with parameters.
procedure TextTitelOnDrawCommandClick(aDrawCommand: TObject);
var
lSQLBuilder: Tda… -
My report has a group, i found that Report.PageNo and
Report.AbsolutePageNo is wrong when the detail of a group is more than
one page
For example, in my report i have a group that need to print several
records, some of them are p… -
I solved it by using label not global variables.Labels are keeping their
values.Following are informal only.
Thank you.
procedure ReportBeforeprint;
begin
if Report.DeviceType='Screen' then
str := MyFunc;
Thanks! That plus setting the PassSetting to psOnePass did it.
Thanks, the DBCalc component is good. But I'm still not clear on one
thing...
How can I do so each page adds to its total once only? Currently, my totals
are being increased each time a page is rendered.
eg.…I sent a copy of the report to support email.
Application with RB built-in and registred user. I'll try the latest version
and see if that helps.
Hi Nico,
Sorry should have been a lot clearer. Looking back that was an awful post.
The version I'm currently running is 10.04. The report will not calculate
correctly if you set the pass to one time. I put the a showmessage i…The error is: Could not compile program in BeforeGenerate.
I cant put these code into Delphi code, because I'm load the report from a
file..
Thanks for all,
Fellipe H.
I have found another call to that function in OnDestroy event.
Hi Nico,
thanks for the response, it pointed me in the right direction. After a bit
of experimenting, here's my solution:
In the AfterPrint event of the detail band (as opposed to the
AfterGenerate, where the Prin…I am using Delphi 2006 and ReportBuilder 9.03
Sorry for the mistake in my original post, I see that the variable is
not a DBCalc but a normal variable, just there to "build" the total.
I have in this case 3 subrapports.
Thanks, I'll give it a try.
IF ((DBdetail['WOID'] = 13165) OR (DBdetail['WOID'] = 14164) OR ... Then
or if the list is longer use a boolean variable
e.g.
isTrue = ((DBdetail['WOID'] = 13165) OR
(DBdetail['WOID'] = 14164) OR
…Thanks, it compiled correctly, but how would i list multiple numbers within
an If statemanet?
if
DBdetail['WOID'] = 13165
DBdetail['WOID'] = 14164
DBdetail['WOID'] = 12134
DBdetail['WOID'] = 12097 then
Hi Chris,
I gues it should be
if DBdetail['WOID'] = 13165 then
Kind regards
Ruediger Kabbasch
I saw that before, but I was lobbing off FieldObjects for some reason,
thanks.
Null date would be handy too.