if (fieldCode == "qrCodeImg" && !string.IsNullOrEmpty(fieldValue))
{
if (Report.ControlByName("PictureBox1") != null)
{
string base64 = fieldValue.Substring(22);
byte[] bytes = Convert.FromBase64String(base64);
Report.ControlByName("PictureBox1").AsPictureBox.LoadFromMemory(ref bytes[0], (int)bytes.Length);
}
}