hi,
When i put a image box in body in rdlc layout and set it's value it's working but i need image on page header...
i also fellow this practice
(1) create a hidden textbox in body section on set his value
=Convert.ToBase64String(Fields!CompanyInformation_Picture.Value)
(2) create a image box in header section and set his value
=Convert.FromBase64String(ReportItems!CompanyInformation_Picture.Value)
but it's not working
Devendra
0
Answers
http://blogs.msdn.com/b/nav/archive/2009/02/05/updated-april-2nd-2009-how-to-add-a-company-picture-to-a-report.aspx
It should work
-Mohana
http://mohana-dynamicsnav.blogspot.in/
https://www.facebook.com/MohanaDynamicsNav
solved...
if i use text box name at step 2
(2) create a image box in header section and set his value
=Convert.FromBase64String(ReportItems!CompanyInformation_Picture.Value)
correct
(2) create a image box in header section and set his value
=Convert.FromBase64String(ReportItems! < text box name exp CompanyInformation_Picture>.Value)
Devendra