using System; using System.Collections; using System.Collections.Generic; using System.ComponentModel; using System.Windows.Forms; using System.Drawing; using System.Data; using FastReport; using FastReport.Data; using FastReport.Dialog; using FastReport.Barcode; using FastReport.Table; using FastReport.Utils; using System.IO; namespace FastReport { public class ReportScript { private void Barcode1_BeforePrint(object sender, EventArgs e) { Barcode1.Barcode=new Barcode128(); Barcode1.Text=((String)Report.GetColumnValue("exam.checkRequestNo")); } } }