Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations bkrike on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Scroll bar not visible.

Status
Not open for further replies.

bandarna

Programmer
Jan 2, 2003
122
US
I have developed a CR. If I run stand alone I have a both scroll bars (bottom and right) and same report I am running through Crystal Report viewer now I can’t see the bottom scroll bar, I have right one ok.

Right now I have views options like this:


;viewer options - valid values are True and False
;EnableAnimationControl=True
;EnableCloseButton=True
;EnableDrillDown=True
;EnableExportButton=True
;EnableProgressControl=True
;EnableNavigationControls=True
;EnableStopButton=True
;EnableRefreshButton=True
;EnableGroupTree=False
;EnableHelpButton=False
;EnablePopupMenu=False
;EnablePrintButton=True
;EnableSearchControl=True
;EnableSearchExpertButton=False
;EnableSelectExpertButton=False
;EnableToolbar=True
;EnableZoomControl=True
;DisplayBackgroundEdge=True
;DisplayBorder=True
;DisplayTabs=True


any help?
 

Are you manually sizing the CR Viewer? If so, try decreasing the height property. I ran into the same problem. I believe the scroll is there, but it's just below the bottome of the screen.

I don't know how this will work if a user with a different screen resolution runs the report.

Here is a snipet of the code I use (PARAMSELECT is the form where CRViewer is located):

PARAMSELECT.WindowState = vbMaximized
CRViewer1.Visible = True
CRViewer1.Left = 0
CRViewer1.Top = 0
CRViewer1.Width = PARAMSELECT.Width - 125
CRViewer1.Height = PARAMSELECT.Height - 400

Hope this helps. Good luck
 
Yes, you are right. The scroll is there, after your reply I am looking at the bottom of the screen. I can see hairline size of bottoms at both ends. Slowly I clicked on it. It is working. But how can I make it visible. That means how can I set the size of my viewer size.

What is PARAMSELECT? Is it ViewerReports.ini file? Or viewer options file if it is I have only true or false statements in there.

Please be more clear your answer.

Thanks
BNR
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top