SSRS Report

Hai all,

I developed SSRS Report through RDP.

I have a dialog. In the dialog i have a enum field with vaues ‘Detail’ , ‘Summary’.

My report has 2 designs.

When the user selected the Detail then first design node will be opened. If clicked Summary then Other design will be opened.

How to change this designs based on the enum value selected.

Thanks

Hi,

In the controller calss you can get the value of the dialog.

in the main method just decide which disign you want to print as writen below.

if(controller.parmDialog() == Details)

{

controller.parmReportName(ssrsReportStr(reportName,Design1);

}

else

{

controller.parmReportName(ssrsReportStr(reportName,Design2);

}

Hope it can help you. if not please reply me back.