Error While Add Image Dynamically from Local Path In Crystal Report
问题 In my Crystal Report I need To add Header Image from specific Folder Path, for that I done Below Code private void AddImage_ProdfailReport() { try { // here i have define a simple datatable inwhich image will recide DataTable dt = new DataTable(); // object of data row DataRow drow; // add the column in table to store the image of Byte array type dt.Columns.Add("Image", System.Type.GetType("System.Byte[]")); drow = dt.NewRow(); // define the filestream object to read the image FileStream fs;