public void Detail_Format() { this.Picture1.ImageBytes = System.IO.File.ReadAllBytes("\\mycompany.gif"); }
This snippet shows how to load data in code-based reports into Picture instance with name "picture1". Subscribe to event Section.Format of Detail of your report. private void detail_Format(object sender, System.EventArgs eArgs) { this.picture1.ImageBytes = System.IO.File.ReadAllBytes("\\mycompany.gif"); }
public void Detail_Format() { this.Picture1.ImageBytes = System.IO.File.ReadAllBytes("\\mycompany.gif"); }
private void detail_Format(object sender, System.EventArgs eArgs) { this.picture1.ImageBytes = System.IO.File.ReadAllBytes("\\mycompany.gif"); }