Sep 8, 2003 #1 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
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
Sep 8, 2003 #2 vidru Programmer Jul 18, 2003 2,113 US Are you using the CRViewer control? If so, set the EnablePrintButton property to false. -dave Upvote 0 Downvote
Sep 8, 2003 #3 pgtek Programmer Sep 28, 2001 1,180 CA hi try this Private Sub Form_Load() CRViewer1.EnablePrintButton = False CRViewer1.ReportSource = Report CRViewer1.ViewReport End Sub cheers pgtek Upvote 0 Downvote
hi try this Private Sub Form_Load() CRViewer1.EnablePrintButton = False CRViewer1.ReportSource = Report CRViewer1.ViewReport End Sub cheers pgtek