kreta/KretaWeb/Resources/NyomtatasiSablonok/haladasiNaplo.frx
2024-03-13 00:33:46 +01:00

605 lines
33 KiB
XML

<?xml version="1.0" encoding="utf-8"?>
<Report ScriptLanguage="CSharp" ReportInfo.Created="12/09/2015 17:01:26" ReportInfo.Modified="09/07/2017 19:15:51" ReportInfo.CreatorVersion="2015.4.0.0">
<ScriptText>
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 Table1_ManualBuild(object sender, EventArgs e)
{
int maxOraszam = int.Parse(Report.Parameters.FindByName(&quot;MaxOraszam&quot;).Value.ToString());
// Fő tábla: hetek
DataSourceBase masterData = Data8.DataSource;
// Gyerek tábla: összes adat
DataSourceBase rowData = Report.GetDataSource(&quot;NaploAdatok&quot;);
// Fő tábla inicializálása
//masterData.Init();
// Mennyi hét van
int hetek = masterData.RowCount;
// Kacsolat beállítása a fő és a gyerek tábla között
Relation rel = new Relation();
rel.Name = &quot;AccountsInvoices&quot;;
rel.ParentDataSource = masterData;
rel.ChildDataSource = rowData;
rel.ParentColumns = new string[] { &quot;C_HETSORSZAMA&quot; };
rel.ChildColumns = new string[] { &quot;C_HETSORSZAMA&quot; };
Report.Dictionary.Relations.Add(rel);
// Paraméterben kapott oszlopok, ezek, amik dinamikusan generálódnak minden osztályhoz
string[] poszlopok = Report.GetParameterValue(&quot;Oszlopok&quot;) as string[];
//for(int i=0; i&lt;hetek; i++)
{
rowData.Init(masterData);
// Mennyi oszlop lesz összesen
int oszlopok = poszlopok.Length + 4;
// Első nap
int nap = 0;
// Fejléc generálása
OsztalyNaplo.PrintRow(0);
for (int k = 0; k &lt; oszlopok; k++)
{
if(k&lt;4)
{
OsztalyNaplo.PrintColumn(k);
}
else
{
OszlopFejlec.Text= poszlopok[k-4];
OsztalyNaplo.PrintColumn(4);
}
}
// Végigmegyünk az összes soron
while(rowData.HasMoreRows)
{
// Ha péntek után még van nap
if(nap==5)
{
// akkor új oldalra kerül
OsztalyNaplo.PageBreak();
// Fejléc generálása
OsztalyNaplo.PrintRow(0);
for (int k = 0; k &lt; oszlopok; k++)
{
if(k&lt;4)
{
OsztalyNaplo.PrintColumn(k);
}
else
{
OszlopFejlec.Text= poszlopok[k-4];
OsztalyNaplo.PrintColumn(4);
}
}
}
// 10 sor van egy naphoz
for(int j=1; j &lt; maxOraszam + 1; j++)
{
OsztalyNaplo.PrintRow(j);
// Tanítási napok sorszáma
Object temporaszam = Report.GetColumnValue(&quot;NaploAdatok.NapSorszama&quot;) as object;
if(temporaszam != null)
{
CellNapSorszama.Text = temporaszam.ToString()+&quot;.&quot;;
}
// A hét napja nyelvesítve
string temphetnapja = Report.GetColumnValue(&quot;NaploAdatok.C_HETNAPJA_DNAME&quot;) as string;
if(temphetnapja != null)
{
CellHetNapja.Text = temphetnapja;
}
// Tantárgyak egy naphoz
string temptargy = Report.GetColumnValue(&quot;NaploAdatok.Tantargy&quot;) as string;
if(temptargy!=null)
{
switch(j)
{
case 1:
CellTargy1.Text = temptargy;
break;
case 2:
CellTargy2.Text = temptargy;
break;
case 3:
CellTargy3.Text = temptargy;
break;
case 4:
CellTargy4.Text = temptargy;
break;
case 5:
CellTargy5.Text = temptargy;
break;
case 6:
CellTargy6.Text = temptargy;
break;
case 7:
CellTargy7.Text = temptargy;
break;
case 8:
CellTargy8.Text = temptargy;
break;
case 9:
CellTargy9.Text = temptargy;
break;
case 10:
CellTargy10.Text = temptargy;
break;
case 11:
CellTargy11.Text = temptargy;
break;
case 12:
CellTargy12.Text = temptargy;
break;
case 13:
CellTargy13.Text = temptargy;
break;
case 14:
CellTargy14.Text = temptargy;
break;
case 15:
CellTargy15.Text = temptargy;
break;
case 16:
CellTargy16.Text = temptargy;
break;
case 17:
CellTargy17.Text = temptargy;
break;
case 18:
CellTargy18.Text = temptargy;
break;
case 19:
CellTargy19.Text = temptargy;
break;
case 20:
CellTargy20.Text = temptargy;
break;
case 21:
CellTargy21.Text = temptargy;
break;
case 22:
CellTargy22.Text = temptargy;
break;
case 23:
CellTargy23.Text = temptargy;
break;
case 24:
CellTargy24.Text = temptargy;
break;
case 25:
CellTargy25.Text = temptargy;
break;
}
}
// Mulasztások
string tempmulasztas = Report.GetColumnValue(&quot;NaploAdatok.Mulasztas&quot;) as string;
if(tempmulasztas!=null)
{
Cell50.Text = tempmulasztas.Replace(&quot;[&quot;,&quot;{&quot;).Replace(&quot;]&quot;,&quot;}&quot;);
Cell50.RowSpan = maxOraszam;
}
// Az alap 4 oszlop utáni dinamikusan generált oszlopok feltöltése
for (int k = 0; k &lt; oszlopok; k++)
{
if(k&lt;4)
{
OsztalyNaplo.PrintColumn(k);
}
else
{
Cell64.Text=&quot;&quot;;
string tempmegj = Report.GetColumnValue(&quot;NaploAdatok.&quot; + poszlopok[k-4]) as string;
if(tempmegj != null)
{
Cell64.Text=tempmegj;
Cell64.RowSpan = maxOraszam;
}
OsztalyNaplo.PrintColumn(4);
}
}
rowData.Next();
}
nap++;
}
OsztalyNaplo.ResultTable.AfterCalcBounds += new EventHandler(ResultTable_AfterCalcBounds);
}
}
private void ResultTable_AfterCalcBounds(object sender, EventArgs e)
{
// Táblázat szélességének beállítása
TableResult resultTable = sender as TableResult;
float tableWidth = resultTable.Width;
float pageWidth = Engine.PageWidth;
//if (tableWidth &gt; pageWidth)
{
float ratio = pageWidth / tableWidth;
foreach (TableColumn column in resultTable.Columns)
{
column.AutoSize = false;
column.Width *= ratio;
}
resultTable.CalcHeight();
}
}
private void OsztalyNaploOldal_StartPage(object sender, EventArgs e)
{
Data8.DataSource = Report.GetDataSource(&quot;NaploHetek&quot;);
if (!string.IsNullOrWhiteSpace(Report.Parameters.FindByName(&quot;NaploZarasanakDatuma&quot;).Value.ToString()) &amp;&amp; DateTime.Parse(Report.Parameters.FindByName(&quot;NaploZarasanakDatuma&quot;).Value.ToString()) &lt;= DateTime.Now)
{
HaladasiNaploLezaras.Visible = true;
HaladasiLezarasText.Text =string.Format(&quot;Ezt a naplót {0} tanítási nappal lezártam.&quot;, Report.GetColumnValue(&quot;Fejlec.TanitasiNapokSzama&quot;).ToString());
}
}
}
}
</ScriptText>
<Dictionary>
<MsSqlDataConnection Name="Connection" ConnectionString="rijcmlqiTpLtvmgTJbV++pU1y3UbkwwnYBokqsg5UjobMvBpHupRwLKXqARa05FOF+BT554Vw04PZfKmNBLIjju5Z8K2AzXICQrXb3DMkkrBmjrtB8N7fXBr+JZQi6cxkmfGLuuGc2044Xm3NgGaW7pDT8WlKYKbXJnt015RyybZHnHc5B+ifYOpuyuj/yKEkTS+GDg1LE0I+GbSQY6rX7FrZ6h6Q==">
<TableDataSource Name="Table" Alias="Fejlec" DataType="System.Int32" Enabled="true">
<Column Name="OsztalyNev" DataType="System.String"/>
<Column Name="RovidNev" DataType="System.String"/>
<Column Name="OsztalyMegjegyzes" DataType="System.String"/>
<Column Name="Osztalyfonok" DataType="System.String"/>
<Column Name="IntezmenyVezeto" DataType="System.String"/>
<Column Name="IntezmenyNeve" DataType="System.String"/>
<Column Name="IntezmenyIranyitoszam" DataType="System.String"/>
<Column Name="IntezmenyVaros" DataType="System.String"/>
<Column Name="IntezmenyCime" DataType="System.String"/>
<Column Name="IntezmenyOMKod" DataType="System.String"/>
<Column Name="NaploMegnyitasanakDatuma" DataType="System.String"/>
<Column Name="NaploZarasanakDatuma" DataType="System.String"/>
</TableDataSource>
<TableDataSource Name="Table1" Alias="Tanarok" DataType="System.Int32" Enabled="true">
<Column Name="TargyNev" DataType="System.String"/>
<Column Name="TanarNev" DataType="System.String"/>
</TableDataSource>
<TableDataSource Name="Table2" Alias="TanuloAlapAdatok" DataType="System.Int32" Enabled="true">
<Column Name="ID" DataType="System.Int32"/>
<Column Name="TANULONEV" DataType="System.String"/>
<Column Name="NAPLOSORSZAM" DataType="System.Int32"/>
<Column Name="TORZSLAPSZAM" DataType="System.String"/>
<Column Name="OKTATASIAZONOSITO" DataType="System.String"/>
<Column Name="TAJSZAM" DataType="System.String"/>
<Column Name="ANYJANEVE" DataType="System.String"/>
<Column Name="SZULHELY" DataType="System.String"/>
<Column Name="SZULIDO" DataType="System.DateTime"/>
<Column Name="GONDVISELOID" DataType="System.Int32"/>
<Column Name="GONDVISELONEVE" DataType="System.String"/>
<Column Name="KILEPESDATUMA" DataType="System.DateTime"/>
<Column Name="BTMPROBLEMAS" DataType="System.String"/>
<Column Name="SAJATOSNEVELESU" DataType="System.String"/>
<Column Name="HALMOZOTTANFOGYATEKOS" DataType="System.String"/>
<Column Name="KEPZES" DataType="System.String"/>
<Column Name="ALLAMPOLGARSAGA" DataType="System.String"/>
</TableDataSource>
<TableDataSource Name="Table3" Alias="Oralatogatasok" DataType="System.Int32" Enabled="true">
<Column Name="DATUM" DataType="System.DateTime"/>
<Column Name="ORASZAM" DataType="System.Int32"/>
<Column Name="TARGYNEV" DataType="System.String"/>
<Column Name="LATOGATO" DataType="System.String"/>
<Column Name="LATOGATOBEOSZTAS" DataType="System.String"/>
<Column Name="ESZREVETEL" DataType="System.String"/>
</TableDataSource>
<TableDataSource Name="Table4" Alias="Naploellenorzesek" DataType="System.Int32" Enabled="true">
<Column Name="ELLENORZESDATUMA" DataType="System.DateTime"/>
<Column Name="ELLENORZOSZEMELY" DataType="System.String"/>
<Column Name="ESZREVETEL" DataType="System.String"/>
</TableDataSource>
<TableDataSource Name="Table5" Alias="Orarend" DataType="System.Int32" Enabled="true" SelectCommand="exec uspGetOsztalyNaplo 1">
<Column Name="osztalyId" DataType="System.Int32"/>
<Column Name="Ora" DataType="System.Int32"/>
<Column Name="Hetirend" DataType="System.Int32"/>
<Column Name="osztalyNev" DataType="System.String"/>
<Column Name="1408" Alias="Hetfo" DataType="System.String"/>
<Column Name="1409" Alias="Kedd" DataType="System.String"/>
<Column Name="1410" Alias="Szerda" DataType="System.String"/>
<Column Name="1411" Alias="Csutortok" DataType="System.String"/>
<Column Name="1412" Alias="Pentek" DataType="System.String"/>
<Column Name="1413" Alias="Szombat" DataType="System.String"/>
<Column Name="Hetirend_DNAME" DataType="System.String"/>
</TableDataSource>
</MsSqlDataConnection>
<TableDataSource Name="Adatmodositasok" ReferenceName="Adatmodositasok" DataType="System.Int32" Enabled="true">
<Column Name="ID" DataType="System.Int32"/>
<Column Name="RegiErtek" DataType="System.String"/>
<Column Name="MezoNevData" DataType="System.String"/>
<Column Name="UjErtek" DataType="System.String"/>
</TableDataSource>
<Parameter Name="UserExtra1" DataType="System.String"/>
<Parameter Name="KepzesKod" DataType="System.String"/>
<Parameter Name="ModifiedName" DataType="System.String"/>
<Parameter Name="PrintName" DataType="System.String"/>
<Parameter Name="BeadasDatuma" DataType="System.String"/>
<Parameter Name="ElbiralasDatuma" DataType="System.String"/>
<Parameter Name="Muvelet" DataType="System.String"/>
<Parameter Name="Megjegyzes" DataType="System.String"/>
<Parameter Name="LoggedInUserName" DataType="System.String"/>
<Parameter Name="LoggedInUserName_1" DataType="System.String"/>
<Parameter Name="LoggedInUserName_2" DataType="System.String"/>
<Parameter Name="LoggedInUserName_3" DataType="System.String"/>
<Parameter Name="LoggedInUserName_4" DataType="System.String"/>
<Parameter Name="NeptunCode" DataType="System.String"/>
<Parameter Name="OsztalyNev" DataType="System.String"/>
</Dictionary>
<ReportPage Name="FejlecOldal">
<ReportTitleBand Name="ReportTitle1" Width="718.2" Height="37.8"/>
<PageHeaderBand Name="PageHeader1" Top="41.8" Width="718.2" Height="151.2" CanGrow="true">
<TextObject Name="Text2" Top="75.6" Width="718.2" Height="18.9" CanGrow="true" Text="[Fejlec.IntezmenyIranyitoszam] [Fejlec.IntezmenyVaros], [Fejlec.IntezmenyCime]" HorzAlign="Center" VertAlign="Center"/>
<TextObject Name="Text1" Width="718.2" Height="66.15" CanGrow="true" Text="[Fejlec.IntezmenyNeve]" HorzAlign="Center" VertAlign="Center" Font="Arial, 18pt"/>
<TextObject Name="Text3" Top="113.4" Width="718.2" Height="18.9" Text="[Fejlec.IntezmenyOMKod]" HorzAlign="Center" VertAlign="Center"/>
</PageHeaderBand>
<DataBand Name="Data1" Top="197" Width="718.2" Height="481.95" CanGrow="true">
<TextObject Name="Text4" Top="179.55" Width="718.2" Height="37.8" Text="Osztálynapló" HorzAlign="Center" VertAlign="Center" Font="Arial, 24pt, style=Bold"/>
<TextObject Name="Text5" Top="236.25" Width="718.2" Height="37.8" CanGrow="true" Text="[OsztalyNev]" HorzAlign="Center" VertAlign="Center" Font="Arial, 24pt, style=Bold"/>
</DataBand>
<PageFooterBand Name="PageFooter1" Top="682.95" Width="718.2" Height="189" CanGrow="true">
<TextObject Name="Text12" Left="9.45" Top="103.95" Width="141.75" Height="47.25" CanGrow="true" Text="&lt;!Fejlec.Osztalyfonok!&gt;&#13;&#10;osztályfőnök" Brackets="&lt;!,!&gt;" HorzAlign="Center" VertAlign="Center"/>
<TextObject Name="Text16" Left="170.1" Top="103.95" Width="141.75" Height="47.25" CanGrow="true" Text="&lt;!Fejlec.IntezmenyVezeto!&gt;&#13;&#10;intézményvezető" Brackets="&lt;!,!&gt;" HorzAlign="Center" VertAlign="Center"/>
<TextObject Name="Text13" Left="9.45" Top="85.05" Width="141.75" Height="18.9" Text="........................................."/>
<TextObject Name="Text15" Left="170.1" Top="85.05" Width="141.75" Height="18.9" Text="........................................."/>
<TextObject Name="Text7" Left="9.45" Width="302.4" Height="75.6" Text="A naplót megnyitotta:&#13;&#10;&#13;&#10;[Fejlec.NaploMegnyitasanakDatuma]" HorzAlign="Center" VertAlign="Center"/>
<TextObject Name="Text85" Left="406.35" Top="103.95" Width="141.75" Height="47.25" CanGrow="true" Text="&lt;!Fejlec.Osztalyfonok!&gt;&#13;&#10;osztályfőnök" Brackets="&lt;!,!&gt;" HorzAlign="Center" VertAlign="Center"/>
<TextObject Name="Text86" Left="567" Top="103.95" Width="141.75" Height="47.25" CanGrow="true" Text="&lt;!Fejlec.IntezmenyVezeto!&gt;&#13;&#10;intézményvezető" Brackets="&lt;!,!&gt;" HorzAlign="Center" VertAlign="Center"/>
<TextObject Name="Text87" Left="406.35" Top="85.05" Width="141.75" Height="18.9" Text="........................................."/>
<TextObject Name="Text88" Left="567" Top="85.05" Width="141.75" Height="18.9" Text="........................................."/>
<TextObject Name="Text91" Left="406.35" Width="302.4" Height="75.6" Text="A naplót lezárta:&#13;&#10;&#13;&#10;[Fejlec.NaploZarasanakDatuma]" HorzAlign="Center" VertAlign="Center"/>
</PageFooterBand>
</ReportPage>
<ReportPage Name="OsztalyNaploOldal" Landscape="true" PaperWidth="420.1" PaperHeight="296.9" RawPaperSize="8" StartPageEvent="OsztalyNaploOldal_StartPage">
<ReportTitleBand Name="ReportTitle6" Width="1512.38" Height="9.45"/>
<PageHeaderBand Name="PageHeader6" Top="13.45" Width="1512.38" Height="18.9">
<TextObject Name="Text6" Width="1039.5" Height="18.9" Text="[Fejlec.IntezmenyOMKod] - [Fejlec.IntezmenyNeve]"/>
</PageHeaderBand>
<DataBand Name="Data8" Top="36.35" Width="1512.38" Height="392.16" CanGrow="true" StartNewPage="true">
<TableObject Name="OsztalyNaplo" Top="28.35" Width="491.4" Height="363.81" Border.Lines="All" ManualBuildEvent="Table1_ManualBuild">
<TableColumn Name="Column15" Width="37.8"/>
<TableColumn Name="Column16" Width="37.8"/>
<TableColumn Name="Column17" Width="141.75"/>
<TableColumn Name="Column18" Width="151.2"/>
<TableColumn Name="Column19" Width="122.85"/>
<TableRow Name="Row12" Height="80.31">
<TableCell Name="Cell74" Border.Lines="All" Fill.Color="192, 255, 255" Text="Nap" Angle="270" Font="Arial, 6pt"/>
<TableCell Name="Cell75" Border.Lines="All" Fill.Color="192, 255, 255" Text="Óra" Angle="270" Font="Arial, 6pt"/>
<TableCell Name="Cell76" Border.Lines="All" Fill.Color="192, 255, 255" Text="Tantárgy" HorzAlign="Center" VertAlign="Bottom" Font="Arial, 6pt"/>
<TableCell Name="Cell49" Border.Lines="All" Fill.Color="192, 255, 255" Text="Mulasztások" HorzAlign="Center" VertAlign="Bottom" Font="Arial, 6pt"/>
<TableCell Name="Cell63" Border.Lines="All" Fill.Color="192, 255, 255">
<TextObject Name="OszlopFejlec" Width="122.85" Height="75.6" Angle="270" Font="Arial, 6pt"/>
</TableCell>
</TableRow>
<TableRow Name="Row13" MinHeight="11.34" MaxHeight="34.02" Height="11.34" AutoSize="true">
<TableCell Name="CellNapSorszama" Border.Lines="All" HideZeros="true" HideValue="0" HorzAlign="Center" VertAlign="Center" Font="Arial, 6pt"/>
<TableCell Name="CellOraszam1" Border.Lines="All" Text="1." HorzAlign="Center" Font="Arial, 6pt"/>
<TableCell Name="CellTargy1" Border.Lines="All" VertAlign="Center" Font="Arial, 6pt"/>
<TableCell Name="Cell50" Border.Lines="All" Font="Arial, 6pt"/>
<TableCell Name="Cell64" Border.Lines="All" Text="Összevont" AllowExpressions="false" Angle="270" Font="Arial, 6pt"/>
</TableRow>
<TableRow Name="Row3" MinHeight="11.34" MaxHeight="34.02" Height="11.34" AutoSize="true">
<TableCell Name="CellHetNapja" HorzAlign="Center" VertAlign="Center" Angle="270" Font="Arial, 7pt" RowSpan="24"/>
<TableCell Name="Cell81" Border.Lines="All" Text="2." HorzAlign="Center" Font="Arial, 6pt"/>
<TableCell Name="CellTargy2" Border.Lines="All" VertAlign="Center" Font="Arial, 6pt"/>
<TableCell Name="Cell51" Border.Lines="Bottom"/>
<TableCell Name="Cell65" Border.Lines="All"/>
</TableRow>
<TableRow Name="Row4" MinHeight="11.34" MaxHeight="34.02" Height="11.34" AutoSize="true">
<TableCell Name="Cell16"/>
<TableCell Name="Cell17" Border.Lines="All" Text="3." HorzAlign="Center" Font="Arial, 6pt"/>
<TableCell Name="CellTargy3" Border.Lines="All" VertAlign="Center" Font="Arial, 6pt"/>
<TableCell Name="Cell52" Border.Lines="Bottom"/>
<TableCell Name="Cell66" Border.Lines="All"/>
</TableRow>
<TableRow Name="Row5" MinHeight="11.34" MaxHeight="34.02" Height="11.34" AutoSize="true">
<TableCell Name="Cell21"/>
<TableCell Name="Cell22" Border.Lines="All" Text="4." HorzAlign="Center" Font="Arial, 6pt"/>
<TableCell Name="CellTargy4" Border.Lines="All" VertAlign="Center" Font="Arial, 6pt"/>
<TableCell Name="Cell53" Border.Lines="Bottom"/>
<TableCell Name="Cell67" Border.Lines="All"/>
</TableRow>
<TableRow Name="Row6" MinHeight="11.34" MaxHeight="34.02" Height="11.34" AutoSize="true">
<TableCell Name="Cell26"/>
<TableCell Name="Cell27" Border.Lines="All" Text="5." HorzAlign="Center" Font="Arial, 6pt"/>
<TableCell Name="CellTargy5" Border.Lines="All" VertAlign="Center" Font="Arial, 6pt"/>
<TableCell Name="Cell54" Border.Lines="Bottom"/>
<TableCell Name="Cell68" Border.Lines="All"/>
</TableRow>
<TableRow Name="Row7" MinHeight="11.34" MaxHeight="34.02" Height="11.34" AutoSize="true">
<TableCell Name="Cell31"/>
<TableCell Name="Cell32" Border.Lines="All" Text="6." HorzAlign="Center" Font="Arial, 6pt"/>
<TableCell Name="CellTargy6" Border.Lines="All" VertAlign="Center" Font="Arial, 6pt"/>
<TableCell Name="Cell55" Border.Lines="Bottom"/>
<TableCell Name="Cell69" Border.Lines="All"/>
</TableRow>
<TableRow Name="Row8" MinHeight="11.34" MaxHeight="34.02" Height="11.34" AutoSize="true">
<TableCell Name="Cell36"/>
<TableCell Name="Cell37" Border.Lines="All" Text="7." HorzAlign="Center" Font="Arial, 6pt"/>
<TableCell Name="CellTargy7" Border.Lines="All" VertAlign="Center" Font="Arial, 6pt"/>
<TableCell Name="Cell56" Border.Lines="Bottom"/>
<TableCell Name="Cell70" Border.Lines="All"/>
</TableRow>
<TableRow Name="Row9" MinHeight="11.34" MaxHeight="34.02" Height="11.34" AutoSize="true">
<TableCell Name="Cell41"/>
<TableCell Name="Cell42" Border.Lines="All" Text="8." HorzAlign="Center" Font="Arial, 6pt"/>
<TableCell Name="CellTargy8" Border.Lines="All" VertAlign="Center" Font="Arial, 6pt"/>
<TableCell Name="Cell57" Border.Lines="Bottom"/>
<TableCell Name="Cell71" Border.Lines="All"/>
</TableRow>
<TableRow Name="Row10" MinHeight="11.34" MaxHeight="34.02" Height="11.34" AutoSize="true">
<TableCell Name="Cell46"/>
<TableCell Name="Cell47" Border.Lines="All" Text="9." HorzAlign="Center" Font="Arial, 6pt"/>
<TableCell Name="CellTargy9" Border.Lines="All" VertAlign="Center" Font="Arial, 6pt"/>
<TableCell Name="Cell58" Border.Lines="Bottom"/>
<TableCell Name="Cell72" Border.Lines="All"/>
</TableRow>
<TableRow Name="Row11" MinHeight="11.34" MaxHeight="34.02" Height="11.34" AutoSize="true">
<TableCell Name="Cell59" Border.Lines="All"/>
<TableCell Name="Cell60" Border.Lines="All" Text="10." HorzAlign="Center" VertAlign="Center" Font="Arial, 5pt"/>
<TableCell Name="CellTargy10" Border.Lines="All" VertAlign="Center" Font="Arial, 6pt"/>
<TableCell Name="Cell62" Border.Lines="All"/>
<TableCell Name="Cell73" Border.Lines="All"/>
</TableRow>
<TableRow Name="Row95" MinHeight="11.34" MaxHeight="34.02" Height="11.34" AutoSize="true">
<TableCell Name="Cell653"/>
<TableCell Name="Cell654" Border.Lines="Left, Top" Text="11." HorzAlign="Center" VertAlign="Center" Font="Arial, 5pt"/>
<TableCell Name="CellTargy11" Border.Lines="All" Font="Arial, 6pt"/>
<TableCell Name="Cell656" Border.Lines="Bottom"/>
<TableCell Name="Cell657" Border.Lines="All"/>
</TableRow>
<TableRow Name="Row96" MinHeight="11.34" MaxHeight="34.02" Height="11.34" AutoSize="true">
<TableCell Name="Cell658"/>
<TableCell Name="Cell659" Border.Lines="Left, Top" Text="12." HorzAlign="Center" VertAlign="Center" Font="Arial, 5pt"/>
<TableCell Name="CellTargy12" Border.Lines="All" Font="Arial, 6pt"/>
<TableCell Name="Cell661" Border.Lines="Bottom"/>
<TableCell Name="Cell662" Border.Lines="All"/>
</TableRow>
<TableRow Name="Row97" MinHeight="11.34" MaxHeight="34.02" Height="11.34" AutoSize="true">
<TableCell Name="Cell663"/>
<TableCell Name="Cell664" Border.Lines="Left, Top" Text="13." HorzAlign="Center" VertAlign="Center" Font="Arial, 5pt"/>
<TableCell Name="CellTargy13" Border.Lines="All" Font="Arial, 6pt"/>
<TableCell Name="Cell666" Border.Lines="Bottom"/>
<TableCell Name="Cell667" Border.Lines="All"/>
</TableRow>
<TableRow Name="Row98" MinHeight="11.34" MaxHeight="34.02" Height="11.34" AutoSize="true">
<TableCell Name="Cell668"/>
<TableCell Name="Cell669" Border.Lines="Left, Top" Text="14." HorzAlign="Center" VertAlign="Center" Font="Arial, 5pt"/>
<TableCell Name="CellTargy14" Border.Lines="All" Font="Arial, 6pt"/>
<TableCell Name="Cell671" Border.Lines="Bottom"/>
<TableCell Name="Cell672" Border.Lines="All"/>
</TableRow>
<TableRow Name="Row99" MinHeight="11.34" MaxHeight="34.02" Height="11.34" AutoSize="true">
<TableCell Name="Cell673"/>
<TableCell Name="Cell674" Border.Lines="Left, Top" Text="15." HorzAlign="Center" VertAlign="Center" Font="Arial, 5pt"/>
<TableCell Name="CellTargy15" Border.Lines="All" Font="Arial, 6pt"/>
<TableCell Name="Cell676" Border.Lines="Bottom"/>
<TableCell Name="Cell677" Border.Lines="All"/>
</TableRow>
<TableRow Name="Row100" MinHeight="11.34" MaxHeight="34.02" Height="11.34" AutoSize="true">
<TableCell Name="Cell678"/>
<TableCell Name="Cell679" Border.Lines="Left, Top" Text="16." HorzAlign="Center" VertAlign="Center" Font="Arial, 5pt"/>
<TableCell Name="CellTargy16" Border.Lines="All" Font="Arial, 6pt"/>
<TableCell Name="Cell681" Border.Lines="Bottom"/>
<TableCell Name="Cell682" Border.Lines="All"/>
</TableRow>
<TableRow Name="Row101" MinHeight="11.34" MaxHeight="34.02" Height="11.34" AutoSize="true">
<TableCell Name="Cell683"/>
<TableCell Name="Cell684" Border.Lines="Left, Top" Text="17." HorzAlign="Center" VertAlign="Center" Font="Arial, 5pt"/>
<TableCell Name="CellTargy17" Border.Lines="All" Font="Arial, 6pt"/>
<TableCell Name="Cell686" Border.Lines="Bottom"/>
<TableCell Name="Cell687" Border.Lines="All"/>
</TableRow>
<TableRow Name="Row102" MinHeight="11.34" MaxHeight="34.02" Height="11.34" AutoSize="true">
<TableCell Name="Cell688"/>
<TableCell Name="Cell689" Border.Lines="Left, Top" Text="18." HorzAlign="Center" VertAlign="Center" Font="Arial, 5pt"/>
<TableCell Name="CellTargy18" Border.Lines="All" Font="Arial, 6pt"/>
<TableCell Name="Cell691" Border.Lines="Bottom"/>
<TableCell Name="Cell692" Border.Lines="All"/>
</TableRow>
<TableRow Name="Row103" MinHeight="11.34" MaxHeight="34.02" Height="11.34" AutoSize="true">
<TableCell Name="Cell693"/>
<TableCell Name="Cell694" Border.Lines="Left, Top" Text="19." HorzAlign="Center" VertAlign="Center" Font="Arial, 5pt"/>
<TableCell Name="CellTargy19" Border.Lines="All" Font="Arial, 6pt"/>
<TableCell Name="Cell696" Border.Lines="Bottom"/>
<TableCell Name="Cell697" Border.Lines="All"/>
</TableRow>
<TableRow Name="Row104" MinHeight="11.34" MaxHeight="34.02" Height="11.34" AutoSize="true">
<TableCell Name="Cell698"/>
<TableCell Name="Cell699" Border.Lines="Left, Top" Text="20." HorzAlign="Center" VertAlign="Center" Font="Arial, 5pt"/>
<TableCell Name="CellTargy20" Border.Lines="All" Font="Arial, 6pt"/>
<TableCell Name="Cell701" Border.Lines="Bottom"/>
<TableCell Name="Cell702" Border.Lines="All"/>
</TableRow>
<TableRow Name="Row105" MinHeight="11.34" MaxHeight="34.02" Height="11.34" AutoSize="true">
<TableCell Name="Cell703"/>
<TableCell Name="Cell704" Border.Lines="Left, Top" Text="21." HorzAlign="Center" VertAlign="Center" Font="Arial, 5pt"/>
<TableCell Name="CellTargy21" Border.Lines="All" Font="Arial, 6pt"/>
<TableCell Name="Cell706" Border.Lines="Bottom"/>
<TableCell Name="Cell707" Border.Lines="All"/>
</TableRow>
<TableRow Name="Row106" MinHeight="11.34" MaxHeight="34.02" Height="11.34" AutoSize="true">
<TableCell Name="Cell708"/>
<TableCell Name="Cell709" Border.Lines="Left, Top" Text="22." HorzAlign="Center" VertAlign="Center" Font="Arial, 5pt"/>
<TableCell Name="CellTargy22" Border.Lines="All" Font="Arial, 6pt"/>
<TableCell Name="Cell711" Border.Lines="Bottom"/>
<TableCell Name="Cell712" Border.Lines="All"/>
</TableRow>
<TableRow Name="Row107" MinHeight="11.34" MaxHeight="34.02" Height="11.34" AutoSize="true">
<TableCell Name="Cell713"/>
<TableCell Name="Cell714" Border.Lines="Left, Top" Text="23." HorzAlign="Center" VertAlign="Center" Font="Arial, 5pt"/>
<TableCell Name="CellTargy23" Border.Lines="All" Font="Arial, 6pt"/>
<TableCell Name="Cell716" Border.Lines="Bottom"/>
<TableCell Name="Cell717" Border.Lines="All"/>
</TableRow>
<TableRow Name="Row108" MinHeight="11.34" MaxHeight="34.02" Height="11.34" AutoSize="true">
<TableCell Name="Cell718"/>
<TableCell Name="Cell719" Border.Lines="Left, Top" Text="24." HorzAlign="Center" VertAlign="Center" Font="Arial, 5pt"/>
<TableCell Name="CellTargy24" Border.Lines="All" Font="Arial, 6pt"/>
<TableCell Name="Cell721" Border.Lines="Bottom"/>
<TableCell Name="Cell722" Border.Lines="All"/>
</TableRow>
<TableRow Name="Row109" MinHeight="11.34" MaxHeight="34.02" Height="11.34" AutoSize="true">
<TableCell Name="Cell723"/>
<TableCell Name="Cell724" Border.Lines="Left, Top" Text="25." HorzAlign="Center" VertAlign="Center" Font="Arial, 5pt"/>
<TableCell Name="CellTargy25" Border.Lines="All" Font="Arial, 6pt"/>
<TableCell Name="Cell726" Border.Lines="Bottom"/>
<TableCell Name="Cell727" Border.Lines="All"/>
</TableRow>
</TableObject>
<TextObject Name="Text78" Left="56.7" Width="576.45" Height="18.9" Fill.Color="Gray" Text="[NaploHetek.C_hetsorszama].hét ([FormatDateTime([NaploHetek.Column1],&quot;yyyy. MM. dd.&quot;)] - [FormatDateTime([NaploHetek.Column2],&quot;yyyy. MM. dd.&quot;)])" VertAlign="Center" Font="Arial, 10pt, style=Bold" TextFill.Color="White"/>
<TextObject Name="Text79" Left="349.65" Width="1162.35" Height="18.9" Fill.Color="Gray" Text="[Fejlec.OsztalyNev]" HorzAlign="Right" Font="Arial, 10pt, style=Bold" TextFill.Color="White"/>
<TextObject Name="Text80" Width="56.7" Height="18.9" Fill.Color="24, 160, 200"/>
</DataBand>
<PageFooterBand Name="PageFooter7" Top="432.51" Width="1512.38" Height="37.8">
<TextObject Name="Text103" Top="18.9" Width="1445.85" Height="18.9" Text="[TotalPages#] oldalból [Page]. oldal" HorzAlign="Center" VertAlign="Center"/>
</PageFooterBand>
</ReportPage>
<ReportPage Name="HaladasiNaploLezaras" Visible="false">
<ReportTitleBand Name="ReportTitle8" Width="718.2" Height="18.9" CanGrow="true">
<TextObject Name="Text104" Width="718.2" Height="18.9" CanGrow="true" Text="[Fejlec.IntezmenyOMKod] - [Fejlec.IntezmenyNeve]"/>
</ReportTitleBand>
<DataBand Name="Data11" Top="22.9" Width="718.2" Height="311.85" CanGrow="true">
<TextObject Name="HaladasiLezarasText" Top="9.45" Width="425.25" Height="18.9" Text="Lezaras" VertAlign="Center"/>
</DataBand>
<PageFooterBand Name="PageFooter8" Top="338.75" Width="718.2" Height="141.75" CanGrow="true">
<TextObject Name="Text105" Left="538.65" Top="94.5" Width="179.55" Height="47.25" CanGrow="true" Text="&lt;!Fejlec.Osztalyfonok!&gt;&#13;&#10;osztályfőnök" Brackets="&lt;!,!&gt;" HorzAlign="Center" VertAlign="Center"/>
<TextObject Name="Text106" Left="378" Top="47.25" Width="160.65" Height="75.6" CanGrow="true" Text="[Fejlec.NaploZarasanakDatuma]" HorzAlign="Center" VertAlign="Center"/>
<TextObject Name="Text107" Left="538.65" Top="85.05" Width="179.55" Height="18.9" CanGrow="true" Text="........................................." HorzAlign="Center"/>
</PageFooterBand>
</ReportPage>
</Report>