Click here to Skip to main content
15,921,716 members
Please Sign up or sign in to vote.
1.00/5 (1 vote)
See more:
how to disable rdlc page setup dialgue box button
Posted

1 solution

ToolStrip toolStrip = (ToolStrip)PatientReportViewer.Controls.Find("toolStrip1",true)[0];
ToolStripItem PS = toolStrip.Items[14];
PS.Visible = false;

create a ToolStrip object and access the PageSetup Toolbar with the help of index... here 14 is the index of Page Setup Button..

Note:"PatientReportViewer" is the Name of your Reportviewer
 
Share this answer
 
v3

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