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)
{
// Tanulók
DataSourceBase dataTanulok = Report.GetDataSource("Tanulok");
Data1.DataSource = dataTanulok;
dataTanulok.Init();
bool isPHMegjelenites = true;
Boolean.TryParse(Report.Parameters.FindByName("PHMegjelenitese").Value.ToString(), out isPHMegjelenites);
Text9.Visible = isPHMegjelenites;
}
}
}