Hi,
I am saving pdf files in database as image datatype.
I want to retrieve this and display it in Crystal report.
We had some image files which we were saving in database. I could retrieve them and display in crystal report.
I followed a similar pattern but the pdf files are not displaying.
How can i display pdf files saved in database on a crystal report? Can this be done?
DataTable dtDocs = new DataTable(); dtDocs .Columns.Add("ClientDocument", typeof(System.Byte[])); dtDocs = myObj.BLL_GetClientUploadDocs(rcbClients.SelectedValue.ToString()); objRptDoc.SetDataSource(dtDocs ); crvClientDoc.ReportSource = objRptDoc;
thanks in advance