How do we have left -right flow , normally its top-down flow
Answer Posted / shantanu sardar-9975581068
It is for right to left. Reverse logic has to implement for
left to right
-----------------------------------------------------------
First Define one gobal variable(g_rw_wdth) as double,
Static, publice.
And now assume that in a frame you have got two dynamic
text.
Now in 1st text box onRow method write following code:
g_rw_wdth = 0
IF ISNULL(row.getvalue("field1")) then
g_rw_wdth = g_rw_wdth + (me.size.width/1440)
end if
Now in 2ndtext box onRow method write following code:
IF ISNULL(row.getvalue("field2")) then
g_rw_wdth = g_rw_wdth + (me.size.width/1440)
else
Me.Position.X = Me.Position.X - (g_rw_wdth * OneInch)
end if
In these fashion you can have more dynamic text.
Now if 1st text box the value is null automatically the 2nd
text box will shift to place 1st text box.
And so on.
Cheer
Shantanu(Actuate Consultant)
| Is This Answer Correct ? | 0 Yes | 3 No |
Post New Answer View All Answers
How to generate a report by getting values from two reports. The generated report should contain the 5 values of first report and last 5 values of second report?
What is the difference between 'using group by in the sql of the report' and 'having a group section in the report'?
We had a number of reports scheduled to run at various times. This worked fine for at least a year, now it is the second time round we lost all the scheduled jobs, with no apparent reason we can find. Any ideas?
Where do we use ACvisitor class?
How to do performance tunning of reports?
What is data stream and data adapter is it same are different? Explain?
What is afc?
What is data stream and data adapter is it same are different?
How do you design a report which has multiple child datastream (horizontal seq)
Connecting to iserver volume using idapi classes(java classes) and after connecting to iserver I want to execute the rox on iserver and also want know the status whether that job is succesfully run or not?
Copy ".roi" file of management console to another path of management console's folder using ".rox" file. or any command of actuate. Is it Possible? if Yes then pls give me Example.
I generated one report design time I can color green. At run I want bule how to change dynamically? And which method I can over write?
I'm busy writing a report that's using report bursting, to be able to do this I need to use a sequential section. Using a sequential section cause the grouping of the original report not to work. Please can someone give me advise on how to come past this problem, the report need to use grouping as it depend largely on totals ect, and I need to use a sequential section within the report to be able to use the report bursting facility.
Explain difference between onrow and onread method?
Where we use afc in actuate?