please describe How to add picture at run time in the crystal report using C#
private void LoadImage(DataRow objDataRow,
string strImageField, string FilePath)
{
FileStream fs = new FileStream(FilePath,
System.IO.FileMode.Open, System.IO.FileAccess.Read);
}