Set the Toolbar Width of the Crystal Report

Bugwee
Posted by Bugwee under ASP.NET category on | Points: 40 | Views : 5502
In the Crystalreportviewer there is no toolbar-style width property. Therefore, if we need to set the toolbar style width of our crystal report then we have to put this
ToolbarStyle-Width="yourWidth"


sample:
<CR:CrystalReportViewer ID="CrystalReportViewer1" runat="server" AutoDataBind="True"
DisplayGroupTree="False" EnableDrillDown="False" EnableParameterPrompt="False"
HasCrystalLogo="False" HasDrillUpButton="False" HasSearchButton="False" HasToggleGroupTreeButton="False"
HasViewList="False" ToolbarStyle-Width="680px" ReportSourceID="CrystalReportSource1"
Height="900px" Width="680px" EnableViewState="False" HasZoomFactorList="False"
BestFitPage="False" />

Comments or Responses

Posted by: Vivekjj on: 10/30/2012 Level:Starter | Status: [Member] | Points: 10
Hi thanks for your code but in that "ToolbarStyle-Width="yourWidth" " is not working in my crystal report is there any other way to increase the crystal report width ,.

Login to post response