Click here to Skip to main content
15,896,153 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
I have taken a one Report in Crystal report.
I using vb.net codding for that data source.
In that report two Sub Reports SubRpt01 and SubRpt02.
In that SubRpt02, i want to dynamically.
I want to increase and decrease SubRpt02 Size through vb.net codding.

i using

objRpt = New Desiner.rptMainReport

objRpt.ReportDefinition.ReportObjects("SubRpt02").Width = 5000

But it cant working.

If any one has ans solution
Pls, Give me response as soon as possible

Thnx in advance :)
Posted

1 solution

Hi
I'm afraid that CR has removed this property in vb.net 2005(God knows why they are still playing!!!!!)

You cannot modify a subreport its top...width... visibility...etc ...

I've a workaround ..Instead of keeping all of the subreports in a single section... try placing each subreport in a section

i.e

Subreport1 in Section1

Subreport2 in Section2

Subreport3 in Section3...

andso on



@ runtime .. try hiding the section you dont want instead of hiding a subreport using...

MainReport.Section'X'.SectionFormat.EnableSuppress = True/false.

By doing this you can avoid changing the position of a subreport as it positions itself automatically

Regards
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900