1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18
| public partial class PrintFiche : Form
{
public PrintFiche()
{
InitializeComponent();
}
private void PrintFiche_Load(object sender, EventArgs e)
{
reportViewer1.LocalReport.ReportPath = "D:\\workspace\\Report\\FichePersonne.rdlc";
ReportParameter lim = new ReportParameter("image",@"C:\Documents and Settings\Mes images\Échantillons d'images\Collines.jpeg", true);
reportViewer1.LocalReport.EnableExternalImages = true;
reportViewer1.LocalReport.SetParameters(new ReportParameter[] {lim} );
this.reportViewer1.RefreshReport();
}
} |
Partager