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;
namespace FastReport
{
public class ReportScript
{
private void Page1_ManualBuild(object sender, EventArgs e)
{
DataSourceBase intezmenyAdatok = Report.GetDataSource("IntezmenyAdatok");
DataSourceBase pedagogusAdatok = Report.GetDataSource("PedagogusAdatok");
DataSzandek.DataSource = pedagogusAdatok;
pedagogusAdatok.Init();
}
private void Barcode1_BeforePrint(object sender, EventArgs e)
{
string tempPedagogusNev = Report.GetColumnValue("PedagogusAdatok.Qr") as string;
Barcode1.Text = tempPedagogusNev;
}
}
}