<?xml version="1.0" encoding="utf-8" standalone="no"?>
<TfrxReport Version="2023.1" DotMatrixReport="False" IniFile="\Software\Fast Reports" PreviewOptions.Buttons="4095" PreviewOptions.Maximized="False" PreviewOptions.Zoom="1" PrintOptions.Printer="Color DIN A3" PrintOptions.PrintOnSheet="0" ReportOptions.Author="J. Leimbrock" ReportOptions.CreateDate="39414,5702933218" ReportOptions.Description.Text="Dieser Bericht dient zur Bestellung des oder der schulischen Datenschutzbeaauftragten nach einer Vorlage der LSB" ReportOptions.Name="Bestellung zum Datenschutzbeauftragten" ReportOptions.LastChange="45601,4049975116" ScriptLanguage="PascalScript" ScriptText.Text="var&#13;&#10;  Vertikal,Horizontal:double;&#13;&#10;  EinZeile,EinSpalte:integer;&#13;&#10;  ohne,mit,SQLSTMT,RKRGrund: string;&#13;&#10;  kids : array[0..999] of string;&#13;&#10;  Braunschweig, Hannover, Lueneburg, Osnabrueck, Andere : boolean;&#13;&#10;  var&#13;&#10;  heute: TDateTime;&#13;&#10;  tt,mm,jj:integer;&#13;&#10;  ttx,mmx,jjx:integer;&#13;&#10;  tt2,mm2,jj2:integer;&#13;&#10;  jj5:integer;&#13;&#10;  datum: string;&#13;&#10;  datumbis: string;&#13;&#10;  datumend: string;&#13;&#10;&#13;&#10;procedure DialogPage1OnActivate(Sender: TfrxComponent);&#13;&#10;var&#13;&#10;  j: integer;&#13;&#10;&#13;&#10;begin&#13;&#10;//showmessage(q1.SQL.Text);&#13;&#10;  q1.Open;&#13;&#10;  j:=0;&#13;&#10;  kids[0]:='0';&#13;&#10;  try&#13;&#10;    while not q1.Eof do&#13;&#10;    begin&#13;&#10;      j:=j+1;&#13;&#10;      kids[j]:=q1.FieldByName('LId').AsString;&#13;&#10;      CheckListBox1.items.add(q1.FieldByName('LName').AsString);&#13;&#10;      q1.Next;&#13;&#10;    end;&#13;&#10;  finally&#13;&#10;    q1.Close;&#13;&#10;  end;&#13;&#10;  for j:=0 to CheckListBox1.items.Count-1 do&#13;&#10;  begin&#13;&#10;   CheckListBox1.checked[j]:= false&#13;&#10;&#13;&#10;  end;&#13;&#10;&#13;&#10;begin&#13;&#10;dateedit1.enabled:=true;&#13;&#10;&#13;&#10;end;&#13;&#10;&#13;&#10;end;&#13;&#10;&#13;&#10;&#13;&#10;procedure DialogPage2OnActivate(Sender: TfrxComponent);&#13;&#10;var&#13;&#10;  Horizontal,Hoehe,Breite: double;&#13;&#10;  Seiten:integer;&#13;&#10;  datum1: TdateTime;&#13;&#10;  datum2: TdateTime;&#13;&#10;  datum5: TdateTime;&#13;&#10;&#13;&#10;begin&#13;&#10;  Seiten:=0;&#13;&#10;  Vertikal:=4.8 ;&#13;&#10;  Horizontal:=10.5;&#13;&#10;  EinZeile:=2;&#13;&#10;  EinSpalte:=6;&#13;&#10;  StartE.Text:='0';&#13;&#10;&#13;&#10;  DecodeDate(date,jj,mm,tt);&#13;&#10; tt:=tt;&#13;&#10; tt2:=tt+1;&#13;&#10; jj5:=jj+5;&#13;&#10; if tt&#60;=0 then tt:=1;&#13;&#10; if tt2&#60;=0 then tt2:=1;&#13;&#10; datum1:=EncodeDate(jj,mm,tt);&#13;&#10;;&#13;&#10; datum5:=EncodeDate(jj5,mm,tt);&#13;&#10; DateEdit1.Date:=datum1;&#13;&#10; datum:=datetostr(datum1);&#13;&#10; datumend:=datetostr(datum5);&#13;&#10;end;&#13;&#10;&#13;&#10;procedure DateEdit1OnChange(Sender: TfrxComponent);&#13;&#10;begin&#13;&#10;  datum:=datetostr(DateEdit1.Date);&#13;&#10;  DecodeDate(DateEdit1.Date,jjx,mmx,ttx);&#13;&#10;  jjx:=jjx+5;&#13;&#10;  datumend:=datetostr(EncodeDate(jjx,mmx,ttx));&#13;&#10;end;&#13;&#10;&#13;&#10;procedure DateEdit2OnChange(Sender: TfrxComponent);&#13;&#10;begin&#13;&#10;end;&#13;&#10;&#13;&#10;procedure weiter0OnEnter(Sender: TfrxComponent);&#13;&#10;begin&#13;&#10;  SQLSTMT:= 'SELECT l.Id LId,concat(if(p.Geschlecht=&#34;w&#34;,&#34;Fr. &#34;,&#34;H. &#34;),if(p.Namenszusatz&#62;&#34;&#34;,concat(p.Namenszusatz,&#34; &#34;),&#34;&#34;),p.Nachname,&#34; (&#34;,l.Kuerzel,&#34;)&#34;) LName FROM lehrer l left join person p on l.Id=p.Id where p.Deleted=0 and l.abgang is null';&#13;&#10;  if CheckBox1.checked=false then ohne:=' and AbgeordnetAn=&#34;&#34;';&#13;&#10;  if CheckBox4.checked=true then&#13;&#10;  begin&#13;&#10;       mit:=' and Lehrkraft=1';&#13;&#10;       if Checkbox5.checked=true then&#13;&#10;               mit:='';&#13;&#10;  end;&#13;&#10;  if (CheckBox4.checked=false) and (Checkbox5.checked=true) then&#13;&#10;       mit:=' and Lehrkraft=0';&#13;&#10;&#13;&#10;  q1.SQL.Text := SQLSTMT + ohne + mit+' order by Nachname';&#13;&#10;  //showmessage(q1.SQL.Text);&#13;&#10;  sort.ModalResult := mrOk;&#13;&#10;end;&#13;&#10;&#13;&#10;&#13;&#10;&#13;&#10;&#13;&#10;procedure weiter2OnEnter(Sender: TfrxComponent);&#13;&#10;  var&#13;&#10;  j: integer;&#13;&#10;  gewaehlt: string;&#13;&#10;&#13;&#10;begin&#13;&#10;StartE.Text:='1';&#13;&#10;{  if strtoint(StartE.Text)&#60;=0 then&#13;&#10;    showmessage('Bitte geben Sie eine Etiketten-Nr. ein.');&#13;&#10;  if strtoint(StartE.Text)&#62;0 then&#13;&#10;}&#13;&#10;  begin&#13;&#10;    gewaehlt:='';&#13;&#10;    for j:=0 to CheckListBox1.items.Count-1 do&#13;&#10;    begin&#13;&#10;      if CheckListBox1.checked[j]= true then&#13;&#10;      begin&#13;&#10;        if gewaehlt='' then&#13;&#10;          gewaehlt:=kids[j+1]&#13;&#10;        else&#13;&#10;          gewaehlt:=gewaehlt+','+kids[j+1];&#13;&#10;      end;&#13;&#10;       begin&#13;&#10;                if lschb1.Checked then&#13;&#10;                Braunschweig := True;&#13;&#10;                if lschb2.Checked then&#13;&#10;                Hannover := True;&#13;&#10;                if lschb3.Checked then&#13;&#10;                Lueneburg := True;&#13;&#10;                if lschb4.Checked then&#13;&#10;                Osnabrueck := True;&#13;&#10;                if lschb5.Checked then&#13;&#10;                Andere := True;&#13;&#10;          end;&#13;&#10;&#13;&#10;&#13;&#10;    end;&#13;&#10;        q1.SQL.Text:='select l.*, p.*'+&#13;&#10;        ',(select Kennzahl from fach where l.FachId1=Id) Fach1'+&#13;&#10;        ',(select Kennzahl from fach where l.FachId2=Id) Fach2'+&#13;&#10;        ',(select Kennzahl from fach where l.FachId3=Id) Fach3'+&#13;&#10;        ', d.Bezeichnung Dienstbezeichnung FROM lehrer l left join person p on l.Id=p.Id left join dienstbezeichnung d on l.DienstbezeichnungId=d.Id where l.Id in ('+gewaehlt+') order by Nachname';&#13;&#10;    //    showmessage(q1.SQL.Text);&#13;&#10;&#13;&#10;    begin&#13;&#10;&#13;&#10;     end;&#13;&#10;    if Antragsdatum.Checked then&#13;&#10;    begin&#13;&#10;    Datumbis:='--------'&#13;&#10;    end;&#13;&#10;    weiter2.default:=true;&#13;&#10;    weiter2.modalResult:=mrOk;&#13;&#10;  end;&#13;&#10;&#13;&#10;end;&#13;&#10;&#13;&#10;&#13;&#10;procedure AuswahlumkehrenOnClick(Sender: TfrxComponent);&#13;&#10;var&#13;&#10;  j:integer;&#13;&#10;begin&#13;&#10;  for j:=0 to CheckListBox1.items.Count-1 do&#13;&#10;  begin&#13;&#10;    if CheckListBox1.checked[j]= true then&#13;&#10;      CheckListBox1.checked[j]:= false&#13;&#10;    else&#13;&#10;      CheckListBox1.checked[j]:= true;&#13;&#10;  end;&#13;&#10;end;&#13;&#10;&#13;&#10;procedure keindatumOnClick(Sender: TfrxComponent);&#13;&#10;begin&#13;&#10;dateedit1.enabled:=false;&#13;&#10;&#13;&#10;end;&#13;&#10;&#13;&#10;procedure eintaegigOnClick(Sender: TfrxComponent);&#13;&#10;begin&#13;&#10;dateedit1.enabled:=true;&#13;&#10;&#13;&#10;end;&#13;&#10;&#13;&#10;procedure zeitraumOnClick(Sender: TfrxComponent);&#13;&#10;begin&#13;&#10;dateedit1.enabled:=true;&#13;&#10;&#13;&#10;end;&#13;&#10;&#13;&#10;begin&#13;&#10;&#13;&#10;end." StoreInDFM="False">
  <Datasets>
    <item DataSet="q1" DataSetName="q1"/>
    <item DataSet="sh" DataSetName="sh"/>
    <item DataSet="ad" DataSetName="ad"/>
    <item DataSet="sl" DataSetName="sl"/>
    <item DataSet="fq" DataSetName="fq"/>
  </Datasets>
  <TfrxDataPage Name="Data" HGuides.Text="" VGuides.Text="" Height="1000" Left="0" Top="0" Width="1000">
    <TfrxMYDACQuery Name="q1" UserName="q1" CloseDataSource="True" FieldAliases.Text="" BCDToCurrency="False" DataSetOptions="0" IgnoreDupParams="False" SQL.Text="SELECT l.*,p.*        &#13;&#10;,(select Kennzahl from fach where l.FachId1=Id) Fach1&#13;&#10;,(select Kennzahl from fach where l.FachId2=Id) Fach2&#13;&#10;,(select Kennzahl from fach where l.FachId3=Id) Fach3&#13;&#10;,d.Bezeichnung Dienstbezeichnung&#13;&#10;,la.Bezeichnung Staatsangehoerigkeit&#13;&#10;,b.Data                &#13;&#10;FROM lehrer l&#13;&#10;left join person p on l.Id=p.Id                                                                         &#13;&#10;left join landiso la on p.StaatsangehoerigkeitId=la.Id&#13;&#10;left join dienstbezeichnung d on l.DienstbezeichnungId=d.Id&#13;&#10;left join bild b on l.Id=b.Id                                                                   &#13;&#10;where p.Deleted=0&#13;&#10;order by Nachname,Rufname                                                          " SQLSchema="eAGLdkksSXRKLE6N5eUKDvSxtbAwMzEzMDE35OWKDklMykktBkqk2KYk5mUW6xiagpCRgQGQMgAqcC/KTAFKG9hq6UAUpOgY6hiAIVDWJzMvG6QbADC4GbU=" LocalMasterDetail="False" PropData="05704C65667402640470546F7002280A506172616D65746572730100"/>
    <TfrxMYDACQuery Name="sh" UserName="sh" CloseDataSource="True" FieldAliases.Text="" BCDToCurrency="False" DataSetOptions="0" IgnoreDupParams="False" SQL.Text="select Name, Adresse, PLZ, Ort, logo from schule s                                                      " LocalMasterDetail="False" PropData="05704C65667402640470546F70038B000A506172616D65746572730100"/>
    <TfrxMYDACQuery Name="ad" UserName="ad" CloseDataSource="True" FieldAliases.Text="" BCDToCurrency="False" DataSetOptions="0" Master="q1" IgnoreDupParams="False" SQL.Text="SELECT a.PersonId, a.Strasse, o.PLZ, o.Name Ort         &#13;&#10;FROM&#13;&#10;    adresse a&#13;&#10;    LEFT OUTER JOIN ort o ON (a.OrtId=o.Id)  " MasterFields="PersonId=Id" LocalMasterDetail="False" PropData="05704C65667403F9000470546F7002280A506172616D65746572730100"/>
    <TfrxMYDACQuery Name="sl" UserName="sl" CloseDataSource="True" FieldAliases.Text="" BCDToCurrency="False" DataSetOptions="0" IgnoreDupParams="False" SQL.Text="SELECT l.Id, p.Titel, p.Nachname, p.Rufname, p.Geschlecht, p.Namenszusatz, p.AkadTitel                                                                                                                   &#13;&#10;FROM&#13;&#10;    lehrer l&#13;&#10;    INNER JOIN schule s ON (l.Id=s.SchulleiterID)&#13;&#10;    INNER JOIN person p ON (s.SchulleiterID=p.Id)  " LocalMasterDetail="False" PropData="05704C65667403F8000470546F70038C000A506172616D65746572730100"/>
    <TfrxMYDACQuery Name="fq" UserName="fq" CloseDataSource="True" FieldAliases.Text="" BCDToCurrency="False" DataSetOptions="0" IgnoreDupParams="False" SQL.Text="select Id,Bezeichnung,Kennzahl from fach f&#13;&#10;where f.Ausgewaehlt=1                                                                                    &#13;&#10;order by Kennzahl" LocalMasterDetail="False" PropData="05704C65667402340470546F7002280A506172616D65746572730100"/>
  </TfrxDataPage>
  <TfrxReportPage Name="Page1" HGuides.Text="" VGuides.Text="" PaperWidth="210" PaperHeight="297" PaperSize="256" LeftMargin="23,8" RightMargin="10" TopMargin="10" BottomMargin="10" ColumnWidth="0" ColumnPositions.Text="0" Frame.Color="255" Frame.Typ="0" Frame.Width="0,5" MirrorMode="0">
    <TfrxMasterData Name="MasterData" FillType="ftBrush" FillGap.Top="0" FillGap.Left="0" FillGap.Bottom="0" FillGap.Right="0" Frame.Typ="0" Height="1024,25263" Left="0" Top="18,89765" Width="665,953186" ColumnWidth="0" ColumnGap="0" DataSet="q1" DataSetName="q1" KeepChild="True" RowCount="0">
      <TfrxShapeView Name="Shape1" AllowVectorExport="True" Left="3,77953" Top="185,19697" Width="650,07916" Height="279,68522" Frame.Typ="0"/>
      <TfrxLineView Name="Line1" AllowVectorExport="True" Left="0" Top="56,33859" Width="653,85869" Height="0" Color="0" Frame.Typ="4"/>
      <TfrxLineView Name="Line5" AllowVectorExport="True" Left="0" Top="150,48825" Width="653,85869" Height="0" Color="0" Frame.Typ="4"/>
      <TfrxMemoView Name="Memo2" AllowVectorExport="True" Left="3,77953" Top="65,33859" Width="393,07112" Height="37,7953" Font.Charset="1" Font.Color="-16777208" Font.Height="-13" Font.Name="Arial" Font.Style="1" Frame.Typ="0" ParentFont="False" Text="[IIF(&#60;q1.&#34;Namenszusatz&#34;&#62;&#60;&#62;'',&#60;q1.&#34;Namenszusatz&#34;&#62;+' ','')][q1.&#34;Nachname&#34;][IIF(&#60;q1.&#34;Titel&#34;&#62;&#60;&#62;'',', '+&#60;q1.&#34;Titel&#34;&#62;,'')], [q1.&#34;Rufname&#34;],&#13;&#10;[q1.&#34;Dienstbezeichnung&#34;]">
        <Formats>
          <item/>
          <item/>
          <item/>
          <item/>
          <item/>
        </Formats>
      </TfrxMemoView>
      <TfrxMemoView Name="Memo7" AllowVectorExport="True" Left="7,55906" Top="124,03154" Width="646,29963" Height="18,89765" Font.Charset="1" Font.Color="-16777208" Font.Height="-13" Font.Name="Arial" Font.Style="0" Frame.Typ="0" ParentFont="False" Text="Fächer [IIF(&#60;q1.&#34;Geschlecht&#34;&#62;='m','des Mitarbeiters','der Mitarbeiterin')]: [q1.&#34;Fach1&#34;], [q1.&#34;Fach2&#34;], [q1.&#34;Fach3&#34;]">
        <Formats>
          <item/>
          <item/>
          <item/>
          <item/>
        </Formats>
      </TfrxMemoView>
      <TfrxMemoView Name="Memo29" AllowVectorExport="True" Left="7,55906" Top="471,7483" Width="162,51979" Height="18,89765" Font.Charset="1" Font.Color="-16777208" Font.Height="-13" Font.Name="Arial" Font.Style="1" Frame.Typ="0" ParentFont="False" Text="Gesprächsverlauf:"/>
      <TfrxMemoView Name="Memo11" AllowVectorExport="True" Left="3,77953" Top="0" Width="657,63822" Height="18,89765" Font.Charset="1" Font.Color="-16777208" Font.Height="-16" Font.Name="Arial" Font.Style="1" Frame.Typ="0" HAlign="haCenter" ParentFont="False" Text="Protokoll über ein Mitarbeitergespräch"/>
      <TfrxMemoView Name="Memo13" AllowVectorExport="True" Left="379,61441" Top="26,45671" Width="260,78757" Height="18,89765" Font.Charset="1" Font.Color="-16777208" Font.Height="-13" Font.Name="Arial" Font.Style="0" Frame.Typ="0" HAlign="haRight" ParentFont="False" Text="[sh.&#34;Ort&#34;], den [&#60;datum&#62;]"/>
      <TfrxMemoView Name="Memo16" AllowVectorExport="True" Left="408,18924" Top="64,25201" Width="230,55133" Height="34,01577" Font.Charset="1" Font.Color="-16777208" Font.Height="-13" Font.Name="Arial" Font.Style="1" Frame.Typ="0" ParentFont="False" Text="[IIF(&#60;sl.&#34;Titel&#34;&#62;='','',&#60;sl.&#34;Titel&#34;&#62;+' ')][IIF(&#60;sl.&#34;AkadTitel&#34;&#62;&#60;&#62;'',&#60;sl.&#34;AkadTitel&#34;&#62;+' ','')][sl.&#34;Rufname&#34;][IIF(&#60;sl.&#34;Namenszusatz&#34;&#62;&#60;&#62;'',' '+&#60;sl.&#34;Namenszusatz&#34;&#62;,'')] [sl.&#34;Nachname&#34;]&#13;&#10;[IIF(&#60;sl.&#34;Geschlecht&#34;&#62;='m','Schulleiter','Schulleiterin')]">
        <Formats>
          <item/>
          <item/>
          <item/>
          <item/>
          <item/>
          <item/>
        </Formats>
      </TfrxMemoView>
      <TfrxMemoView Name="Memo8" AllowVectorExport="True" Left="7,55906" Top="158,74026" Width="200,31509" Height="18,89765" Font.Charset="1" Font.Color="-16777208" Font.Height="-13" Font.Name="Arial" Font.Style="1" Frame.Typ="0" ParentFont="False" Text="Angesprochene Themen:"/>
      <TfrxMemoView Name="Memo14" AllowVectorExport="True" Left="7,55906" Top="994,01639" Width="321,26005" Height="18,89765" Font.Charset="1" Font.Color="-16777208" Font.Height="-11" Font.Name="Arial" Font.Style="0" Frame.Typ="0" ParentFont="False" Text="Unterschrift [IIF(&#60;q1.&#34;Geschlecht&#34;&#62;='m','des Mitarbeiters','der Mitarbeiterin')]"/>
      <TfrxMemoView Name="Memo15" AllowVectorExport="True" Left="343,93723" Top="994,01639" Width="336,37817" Height="18,89765" Font.Charset="1" Font.Color="-16777208" Font.Height="-11" Font.Name="Arial" Font.Style="0" Frame.Typ="0" ParentFont="False" Text="Unterschrift [IIF(&#60;sl.&#34;Geschlecht&#34;&#62;='m','des Schulleiters','der Schulleiterin')]"/>
      <TfrxShapeView Name="Shape2" AllowVectorExport="True" Left="7,55906" Top="498,89796" Width="646,29963" Height="423,30736" Frame.Typ="0"/>
      <TfrxShapeView Name="Shape3" AllowVectorExport="True" Left="7,55906" Top="941,10297" Width="646,29963" Height="49,13389" Frame.Typ="0"/>
      <TfrxMemoView Name="Memo17" AllowVectorExport="True" Left="15,11812" Top="188,9765" Width="623,62245" Height="264,5671" Font.Charset="1" Font.Color="-16777208" Font.Height="-13" Font.Name="Arial" Font.Style="0" Frame.Typ="0" ParentFont="False" Text=""/>
      <TfrxMemoView Name="Memo18" AllowVectorExport="True" Left="15,11812" Top="506,45702" Width="623,62245" Height="408,18924" Font.Charset="1" Font.Color="-16777208" Font.Height="-13" Font.Name="Arial" Font.Style="0" Frame.Typ="0" ParentFont="False" Text=""/>
      <TfrxMemoView Name="Memo19" AllowVectorExport="True" Left="3,77953" Top="26,45671" Width="245,66945" Height="18,89765" Font.Charset="1" Font.Color="-16777208" Font.Height="-16" Font.Name="Arial" Font.Style="1" Frame.Typ="0" ParentFont="False" Text="[sh.&#34;Name&#34;]"/>
      <TfrxLineView Name="Line2" AllowVectorExport="True" Left="0" Top="113,3859" Width="653,85869" Height="0" Color="0" Frame.Typ="4"/>
      <TfrxLineView Name="Line3" AllowVectorExport="True" Left="0" Top="117,16543" Width="653,85869" Height="0" Color="0" Frame.Typ="4"/>
    </TfrxMasterData>
  </TfrxReportPage>
  <TfrxDialogPage Name="sort" Font.Charset="1" Font.Color="0" Font.Height="-11" Font.Name="Tahoma" Font.Style="0" HGuides.Text="" VGuides.Text="" Caption="Antrag für" DoubleBuffered="False" Height="228" ClientHeight="189" Left="602" Top="168" Width="282" Scaled="True" ClientWidth="266">
    <TfrxGroupBoxControl Name="GroupBox1" Left="18" Top="24" Width="229" Height="77" Font.Charset="1" Font.Color="0" Font.Height="-11" Font.Name="Tahoma" Font.Style="1" ParentFont="False" ShowHint="True" Caption="In Auswahl übernehmen:" Color="-16777201" OnClick="GroupBox1OnClick">
      <TfrxCheckBoxControl Name="CheckBox1" Left="122" Top="20" Width="97" Height="17" Font.Charset="1" Font.Color="0" Font.Height="-11" Font.Name="Tahoma" Font.Style="0" ParentFont="False" ShowHint="True" Caption="Abgeordnete" Color="-16777201"/>
      <TfrxCheckBoxControl Name="CheckBox4" Left="6" Top="20" Width="97" Height="17" Font.Charset="1" Font.Color="0" Font.Height="-11" Font.Name="Tahoma" Font.Style="0" ParentFont="False" ShowHint="True" Caption="Lehrer" Checked="True" State="cbChecked" Color="-16777201"/>
      <TfrxCheckBoxControl Name="CheckBox5" Left="6" Top="46" Width="97" Height="17" Font.Charset="1" Font.Color="0" Font.Height="-11" Font.Name="Tahoma" Font.Style="0" ParentFont="False" ShowHint="True" Caption="Mitarbeiter" Color="-16777201"/>
    </TfrxGroupBoxControl>
    <TfrxButtonControl Name="weiter0" Left="171" Top="145" Width="75" Height="25" ShowHint="True" Caption="weiter" OnEnter="weiter0OnEnter"/>
  </TfrxDialogPage>
  <TfrxDialogPage Name="DialogPage1" Tag="1" Font.Charset="1" Font.Color="0" Font.Height="-11" Font.Name="Tahoma" Font.Style="0" HGuides.Text="" VGuides.Text="" Caption="Antrag für" DoubleBuffered="False" Height="439" ClientHeight="400" Left="657" Top="220" Width="300" Scaled="True" ClientWidth="284" OnActivate="DialogPage1OnActivate">
    <TfrxButtonControl Name="weiter1" Left="184" Top="356" Width="75" Height="25" ShowHint="True" Caption="weiter" ModalResult="1" OnEnter="weiter1OnEnter"/>
    <TfrxCheckListBoxControl Name="CheckListBox1" Left="32" Top="24" Width="233" Height="269" ShowHint="True" Color="-16777211" Items.Text=""/>
    <TfrxButtonControl Name="Auswahlumkehren" Left="100" Top="308" Width="111" Height="25" ShowHint="True" Caption="Auswahl umkehren" OnClick="AuswahlumkehrenOnClick"/>
  </TfrxDialogPage>
  <TfrxDialogPage Name="DialogPage2" Tag="2" Font.Charset="1" Font.Color="0" Font.Height="-11" Font.Name="Tahoma" Font.Style="0" HGuides.Text="" VGuides.Text="" Caption="Adresse" DoubleBuffered="False" Height="178" ClientHeight="139" Left="544" Top="200" Width="189" Scaled="True" ClientWidth="173" OnActivate="DialogPage2OnActivate">
    <TfrxEditControl Name="StartE" Left="38,5" Top="133" Width="0" Height="21" ShowHint="True" Color="-16777211" MaxLength="0" PasswordChar="0" Text="0"/>
    <TfrxButtonControl Name="weiter2" Tag="2" Left="48" Top="101" Width="75" Height="25" ShowHint="True" Caption="weiter" OnEnter="weiter2OnEnter"/>
    <TfrxLabelControl Name="Label1" Left="12" Top="12" Width="110" Height="13" Font.Charset="1" Font.Color="0" Font.Height="-11" Font.Name="Tahoma" Font.Style="1" ParentFont="False" ShowHint="True" Caption="Optionale Variablen" Color="-16777201" OnClick="Label1OnClick"/>
    <TfrxRadioButtonControl Name="lschb1" Left="196" Top="32" Width="217" Height="17" ShowHint="True" Visible="False" Caption="LSchB, Regionalabteilung Braunschweig" TabStop="False" Color="-16777201"/>
    <TfrxRadioButtonControl Name="lschb2" Left="228" Top="60" Width="217" Height="17" ShowHint="True" Visible="False" Caption="LSchB, Regionalabteilung Hannover" TabStop="False" Color="-16777201"/>
    <TfrxRadioButtonControl Name="lschb3" Left="232" Top="88" Width="217" Height="17" ShowHint="True" Visible="False" Caption="LSchB, Regionalabteilung Lüneburg" TabStop="False" Color="-16777201"/>
    <TfrxRadioButtonControl Name="lschb4" Left="220" Top="116" Width="217" Height="17" ShowHint="True" Visible="False" Caption="LSchB, Regionalabteilung Osnabrück" TabStop="False" Color="-16777201" OnClick="lschb4OnClick"/>
    <TfrxRadioButtonControl Name="lschb5" Left="220" Top="160" Width="217" Height="17" ShowHint="True" Visible="False" Caption="keine Adresse vorgeben" TabStop="False" Color="-16777201"/>
    <TfrxDateEditControl Name="DateEdit1" Left="12" Top="56" Width="145" Height="21" ShowHint="True" Color="-16777211" Date="43266" Time="0,478680902800988" WeekNumbers="False" OnChange="DateEDit1OnChange"/>
    <TfrxRadioButtonControl Name="Antragsdatum" Left="208" Top="56" Width="85" Height="17" ShowHint="True" Visible="False" Caption="Antragsdatum" Checked="True" Color="-16777201" OnClick="eintaegigOnClick"/>
    <TfrxLabelControl Name="Label2" Left="12" Top="32" Width="136" Height="13" ShowHint="True" Caption="Datum (Ort, den [&#60;datum&#62;]" Color="-16777201" OnClick="Label2OnClick"/>
  </TfrxDialogPage>
</TfrxReport>
