Click here to Skip to main content
15,911,139 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
Hi,
i got a problem in which i wanted to display the images from My.resources and i can not pass any non-string type to the report parameter.. is that anyway to retrieve any path name from My.resources ? or any other suggestion ?

really thank for the help!

i already got this code for simple picturebox

PictureBox1.Image = My.Resources.ResourceManager.GetObject("signa")

how can i use the same resource to display on the rdlc report
Posted
Updated 15-Jan-13 22:25pm
v4

1 solution

XML
<td title="http://localhost:60749/Uploads/Engineers/SignatureFile/5/sample.png" class="a17">
    <img alt="http://localhost:60749/Uploads/Engineers/SignatureFile/5/sample.png" src="" />
</td>




var DC = new EPCDataContext(); 
var parameters = new List<ReportParameter>(); 
var reportData = DC.tvfGetEAReport(); 
 
var siteUrl = "http://" + Request.ServerVariables["HTTP_HOST"].ToString() + "/"; 
 
ReportDataSource rds = new ReportDataSource("DataSet1_tvfGetEAReport", reportData); 
 
var siteUrlParam = ReportViewer1.LocalReport.GetParameters().FirstOrDefault(p => p.Name == "SITE_URL"); 
 
var parameter = new ReportParameter(); 
parameter.Name = "SITE_URL"; 
parameter.Values.Add(siteUrl); 
parameters.Add(parameter); 
 
ReportViewer1.LocalReport.SetParameters(parameters); 
ReportViewer1.LocalReport.DataSources.Add(rds);
 
Share this answer
 
Comments
Racer nick 16-Jan-13 4:17am    
i didn't use any HTTP host here.. plz suggest

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900