string Path = System.Environment.CurrentDirectory + "/test.frx";//獲取路徑
report.Load(Path);//加載模板
var graph = report.FindObject("Picture1") as PictureObject;
graph.ImageLocation="http://www.圖片路徑.jpg ";
FastReport.Table.TableCell Cell6 = new FastReport.Table.TableCell();
Cell6 = (FastReport.Table.TableCell)report.FindObject("Cell6");
Cell6.Text = "顯示內容";
//.............要在Load()之后再為控件賦值