Hi there
I have a trdx file that contains the definition of my report, when I show it with the reportviewer, I would like to change the signature image to the user that is logged in.
at the moment I have this
Im not sure how to access and set the picturebox image before I assign it to the reportViewer. There is no DB data being binded to this report.
Thank you
I have a trdx file that contains the definition of my report, when I show it with the reportviewer, I would like to change the signature image to the user that is logged in.
at the moment I have this
System.Xml.XmlReaderSettings settings = new System.Xml.XmlReaderSettings();settings.IgnoreWhitespace = true;using (System.Xml.XmlReader xmlReader = System.Xml.XmlReader.Create(templatePath, settings)){ Telerik.Reporting.XmlSerialization.ReportXmlSerializer xmlSerializer = new Telerik.Reporting.XmlSerialization.ReportXmlSerializer(); Telerik.Reporting.Report certificateReport = (Telerik.Reporting.Report)xmlSerializer.Deserialize(xmlReader); uxCertificateViewer.ReportSource = certificateReport; uxCertificateViewer.RefreshReport();}Im not sure how to access and set the picturebox image before I assign it to the reportViewer. There is no DB data being binded to this report.
Thank you