hw to disable print button of crystal report placed in child page in asp.net
-
Can u plz help me to find out hw can i disable print button of crystal report which is placed in a child page.I want that only authorized users can take the printouts of reports. thanks in advance....
Maniiiiiiiiiiiiiii
-
Can u plz help me to find out hw can i disable print button of crystal report which is placed in a child page.I want that only authorized users can take the printouts of reports. thanks in advance....
Maniiiiiiiiiiiiiii
Perhaps Crystal Report provide property WindowShowPrintBtn . You can set true/false as your requirement.
Parwej Ahamad g.parwez@gmail.com
-
Perhaps Crystal Report provide property WindowShowPrintBtn . You can set true/false as your requirement.
Parwej Ahamad g.parwez@gmail.com
It has the property PrintatBottomofPage,sorry but i dont have much knowledge about Reports can u plz elaborate me,i have to set print disable in my master page so hw can i access that print button in my master page.... thanks for ur reply...
Maniiiiiiiiiiiiiii
-
Can u plz help me to find out hw can i disable print button of crystal report which is placed in a child page.I want that only authorized users can take the printouts of reports. thanks in advance....
Maniiiiiiiiiiiiiii
in master page find the child control & make set its property like this CrystalDecisions.Web.CrystalReportViewer c = (CrystalDecisions.Web.CrystalReportViewer)ContentPlaceHolder1.FindControl("CrystalReportViewer1"); c.HasPrintButton = false; c.HasExportButton = false;
Maniiiiiiiiiiiiiii