Click here to Skip to main content
15,924,318 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
Crystal Report tool bar is getting extended. The rpt file is developed in landscape mode.



 
<img src="../Resources/images/subttitle.jpg"
style="font-size: 7pt; color: #808080">
CCN Status Report


<%-- --%>

<asp:Label ID="Label4" runat="server" CssClass="NeST_LABEL" Text="ValueDate(dd-mm-yyyy)From">
<asp:TextBox ID="txtStartDate" runat="server" CssClass="NeST_TEXTBOX" MaxLength="50"
Style="position: static" TabIndex="4" Width="80px" Height="13px">
<img id="img10" alt="Calendar" />
<asp:Label ID="Label5" runat="server" CssClass="NeST_LABEL" Text="To">
<asp:TextBox ID="txtEndDate" runat="server" CssClass="NeST_TEXTBOX" MaxLength="50"
Style="position: static;" TabIndex="4" Width="80px" Height="13px">
<img id="img1" alt="Calendar" />
<asp:Label ID="Label1" runat="server" CssClass="NeST_LABEL" Height="15px" Text="FTS File ID">
<asp:TextBox ID="txtFtsFileID" runat="server" Width="219px">
<asp:Label ID="Label2" runat="server" CssClass="NeST_LABEL" Height="15px" Text="Sending Ref (103/102)">
<asp:TextBox ID="txtSendingRef103102" runat="server" Width="219px">
<asp:Label ID="Label6" runat="server" CssClass="NeST_LABEL" Height="15px" Text="Sending Ref CCN">
<asp:TextBox ID="txtSendingRefCCN" runat="server" Width="219px">
                                
<asp:Button ID="btnSearch" runat="server" CssClass="NeST_BUTTON" Style="position: static"
Text="View Report" Width="100px" OnClick="btnSearch_Click" />

<CR:CrystalReportViewer ID="CRVCCNStatus" runat="server">
 
 
 
<input id="hidRFRId" runat="server" name="hidRFRId" type="hidden" value="0" />







Code set for Crystalreportviewer is as below:
CRVCCNStatus.HasGotoPageButton = false;
CRVCCNStatus.DisplayGroupTree = false;
CRVCCNStatus.HasGotoPageButton = false;
CRVCCNStatus.HasSearchButton = false;
CRVCCNStatus.HasDrillUpButton = false;
CRVCCNStatus.HasViewList = false;
CRVCCNStatus.Width = 0;
CRVCCNStatus.HasCrystalLogo = false;
CRVCCNStatus.HasToggleGroupTreeButton = false;
CRVCCNStatus.HasZoomFactorList = false;

What I have tried:

Code set for Crystalreportviewer is as below:
CRVCCNStatus.HasGotoPageButton = false;
CRVCCNStatus.DisplayGroupTree = false;
CRVCCNStatus.HasGotoPageButton = false;
CRVCCNStatus.HasSearchButton = false;
CRVCCNStatus.HasDrillUpButton = false;
CRVCCNStatus.HasViewList = false;
CRVCCNStatus.Width = 0;
CRVCCNStatus.HasCrystalLogo = false;
CRVCCNStatus.HasToggleGroupTreeButton = false;
CRVCCNStatus.HasZoomFactorList = false;
Posted

1 solution

Going through the following link[^] may help you.
 
Share this answer
 

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