Click here to Skip to main content
65,938 articles
CodeProject is changing. Read more.
Articles
(untagged)

Moving the Report Viewer Toolbar

0.00/5 (No votes)
14 Aug 2013 2  
How to move the report viewer toolbar to a ToolStripContainer

Introduction

This article will show how to move the tool bar on the Report Viewer Control to a Tool Strip Container so you can dock it to the top/bottom/left/right of your form and allow the user to move it.


Using the code

The code assumes that you have added a Tool Strip Container called toolstripContainer1 and a Report Viewer control called reportViewer1.  Adjust as needed. 

Put the following code in the Load method of your form:   

// move the toolbar from the report viewer to the toolstripcontainer
ToolStrip toolStrip = (ToolStrip)reportViewer1.Controls.Find("toolStrip1", true)[0];
toolStrip.GripStyle = ToolStripGripStyle.Visible;
this.toolStripContainer1.TopToolStripPanel.Controls.Add(toolStrip);
this.reportViewer1.ShowToolBar = false;   

The first line finds the ToolStrip control in the Report Viewer control.  Then we add this toolstrip to the ToolStripContainer, and finally tell the Report Viewer not to "show" its tool bar (which it no longer has).   

If you don't want the grip to show, set toolStrip.GripStyle = ToolStripGripStyle.Hidden .

Also, you can use the toolStrip variable to add/remove buttons to the Toolstrip. 

Voila! 

History

  • 14 Aug 2013 - Original post.

License

This article has no explicit license attached to it but may contain usage terms in the article text or the download files themselves. If in doubt please contact the author via the discussion board below.

A list of licenses authors might use can be found here