From: Uwe Conradi on 31 Jan 2010 02:59 Hello everybody, I have a Windows Form project in VS2008 with several reports. I would like to give an opportunity to users to load their own logo images. Is this possible to do only with external images? Can I dynamically embed images? If I try to to use an external image I do not see it in the report. My code: ReportViewer1.LocalReport.EnableExternalImages = True Dim filepath As Uri filepath = New Uri("D:\vb\SQL\images\image.bmp") Dim par1 As New ReportParameter("path", filepath.AbsolutePath) Dim pars(0) As ReportParameter pars(0) = par1 ReportViewer1.LocalReport.SetParameters(pars) I set the in rdlc designer source=external and value==Parameters!path.Value But inspite of this I cannot see my image. My developing machine is Windows 7. I have administrative rights. Thanks Uwe
|
Pages: 1 Prev: Multiple rendering after one action Next: Excel Integration with SSRS...Is this possible? |