Link to home
Start Free TrialLog in
Avatar of mate6666
mate6666

asked on

Bottom Up arrow on vertical scroll bar on table does not show

Using C#, vs2008 to develop local reports.  Using table to display dataset.  The vertical scroll bar on the table displays and is usable until you scroll to the bottom of the table data.  There, the bottom up arrow on the scroll bar does not display and the last 2 or 3 lines of table data are not in the displayed area of the table.

Tried changing all the heights of the various objects, but can find nothing that works.  How to get the full table with bottom scroll bar area to display?
Report viewer html
 
<body>
    <form id="form1" runat="server">
    <div>
    
        <rsweb:ReportViewer ID="ReportViewer1" runat="server" Height="600px" 
            Width="755px" >
        </rsweb:ReportViewer>
    
    
    </div>
    </form>
</body>

Open in new window

Avatar of tillgeffken
tillgeffken

Does setting SizeToReportContent="True" on the report viewer help?
ASKER CERTIFIED SOLUTION
Avatar of mate6666
mate6666

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial