我正在使用 VS2010(winform)和 Access 数据库,在我的水晶报表中,我通过创建DataSetPatient.xsd
文件并使用下面的代码成功地显示了数据库中的表,现在我想将特定文件夹/文件夹路径中的图像显示到同一个报表中,因为我我是水晶报告的新手,请谁能一步一步告诉我我该怎么做
public partial class ViewR : Form
{
DBHandling db=new DBHandling();
public ViewR()
{
InitializeComponent();
}
private void ViewR_Load(object sender, EventArgs e)
{
CrystalReportP objRpt;
// Creating object of our report.
objRpt = new CrystalReportP();
DataSetPatient ds = new DataSetPatient(); // .xsd file name
DataTable dt = DBHandling.GetPatient();
ds.Tables[0].Merge(dt);
objRpt.SetDataSource(ds);
crystalReportViewer1.ReportSource = objRpt;
}
}