external grafic in Cr for VS
Hi,
when I try to input diferent text in text box during runtime its work OK.
boolen DetailsShow;
ReportDocument Report=new ReportDocument();
Report.Load("MyReport.rpt");
TextObject textTitle;
textTitle = Report.ReportDefinition.ReportObjects["txtDetails"] as TextObject;
if(DetailsShow)
{
textTitle.Text = "Show details";
}
But now, I want to show external picture in Report depending on some value in run time mode.
how can I do that ...Is it possible?
Laslo
|