Hi,
There is a memo field in my report(printing 4-5 lines of data). as soon i click on this field, report header and report footer are being removed. how can i make my report unadaptable. no hyperlinks are used in report, i just want to take off that option completely from my report.And there are subreports in this main report, to avoid this clicking on subreport i made use of this event:
protected void CrystalReportViewer1_DrillDownSubreport(object source, CrystalDecisions.Web.DrillSubreportEventArgs e)
{
e.Handled = true;
}
this event is helping only in case of subreports but not on any other fields.
Thank you.