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!

how to display report with out preview tab

Status
Not open for further replies.

muralinaidu

Programmer
Jan 2, 2001
27
DE
hi,
i am new to crystal reports. could any one tell me how to remove preview tab,refresh data,zoom etc. except print from the report. and while using with asp it's taking time to display report, is there any way to fasten the performance of reports with out setting server catch.
thanking u

murali
 
muralinaidu: All of the items you are looking for can be removed in ASP with the following within your selected Viewer ASP code:

<PARAM NAME=&quot;EnableRefreshButton&quot; VALUE=0>
<PARAM NAME=&quot;EnableGroupTree&quot; VALUE=0>
<PARAM NAME=&quot;DisplayGroupTree&quot; VALUE=0>
<PARAM NAME=&quot;EnablePrintButton&quot; VALUE=1>
<PARAM NAME=&quot;EnableExportButton&quot; VALUE=0>
<PARAM NAME=&quot;EnableDrillDown&quot; VALUE=0>
<PARAM NAME=&quot;EnableSearchControl&quot; VALUE=0>
<PARAM NAME=&quot;EnableAnimationControl&quot; VALUE=0>
<PARAM NAME=&quot;EnableZoomControl&quot; VALUE=0>


Setting the value of the parameter to 0 turns it off 1 turns it on

To improve performance ensure you've set queries to be server processed, perform grouping on server and that your selection of data within the report does not use formulas to select by (server has to send all rows to client for formula to be evaluated)
David C. Monks
david.monks@chase-international.com
Accredited Seagate Enterprise Partner
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top