Please start any new threads on our new
site at https://forums.sqlteam.com. We've got lots of great SQL Server
experts to answer whatever question you can come up with.
Author |
Topic |
muniappan
Starting Member
7 Posts |
Posted - 2008-01-10 : 11:45:25
|
I know about how to hide the sub report from showing it in the drop down list. I can do it with the report manager [Report properties--> general --> Hide in Listview]. I am using RSBuild tool to automatically deploy the reports.I don't know what modification I have to make in the RSBuild code to incorporate this new functionality[Hiding sub report]. Can you please let me know how to do it?I am using the following code, The description property is working correctly. But the Hide in List view property is not working.Property[] properties = new Property[2]; Property Prop1 = new Property();Property Prop2 = new Property(); Prop1.Name = "HideInListView";Prop1.Value = "True"; properties.SetValue(Prop1, 0);Prop2.Name = "Description";Prop2.Value = "Muni deployed sub report"; properties.SetValue(Prop2, 1);But I don't know the proprty name and value for Hide in List view.Can you please give me the suggestion? |
|
muniappan
Starting Member
7 Posts |
Posted - 2008-01-15 : 14:12:44
|
I am waiting for the reply for the last 3 days. I posted in many forums But I am not getting any reply. Can you please give me an idea of how to resolve or approach this issue?Thank you |
|
|
|
|
|