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!

Disable the Print button in crystal Report

Status
Not open for further replies.

vassoft

Programmer
Jun 12, 2002
18
MY
Hi,
i am calling Crysta report with vb appcation.
i need to disable print icon in the crystal report.
Can u help in this.
in advance Thanks.

Vas
 
Are you using the CRViewer control? If so, set the EnablePrintButton property to false.

-dave
 
hi
try this

Private Sub Form_Load()
CRViewer1.EnablePrintButton = False

CRViewer1.ReportSource = Report
CRViewer1.ViewReport

End Sub
cheers

pgtek
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top