<?xml version="1.0" encoding="utf-8"?>
<TfrxReport Version="5.4.6" DotMatrixReport="False" EngineOptions.SilentMode="True" EngineOptions.NewSilentMode="simSilent" IniFile="\Software\Fast Reports" PreviewOptions.Buttons="4095" PreviewOptions.Zoom="1" PrintOptions.Printer="Default" PrintOptions.PrintOnSheet="0" ReportOptions.CreateDate="42119.8655733102" ReportOptions.Description.Text="" ReportOptions.LastChange="43260.8381589931" ScriptLanguage="PascalScript" ScriptText.Text="var&#13;&#10; i :integer ;&#13;&#10;  po_no,TCODE: string ;&#13;&#10;&#13;&#10;procedure DialogPage1OnActivate(Sender: TfrxComponent);&#13;&#10;begin&#13;&#10;&#13;&#10;  date1.date:=now-30  ;&#13;&#10;  date2.date:=now  ;&#13;&#10;&#13;&#10;  qry_dept.close ;&#13;&#10;  qry_dept.open ;&#13;&#10;&#13;&#10;//  cbb_dept.keyvalue:=&#60;MY_STOCK_CODE&#62; ;&#13;&#10;&#13;&#10;end;&#13;&#10;&#13;&#10;&#13;&#10;&#13;&#10;&#13;&#10;&#13;&#10;procedure Page1OnBeforePrint(Sender: TfrxComponent);&#13;&#10;begin&#13;&#10;   i:= 0 ;&#13;&#10;end;&#13;&#10;&#13;&#10;&#13;&#10;procedure MasterData1OnBeforePrint(Sender: TfrxComponent);&#13;&#10;begin&#13;&#10;&#13;&#10;  memo22.visible:=True ;&#13;&#10;  i:=i+1 ;&#13;&#10;&#13;&#10;&#13;&#10;end;&#13;&#10;&#13;&#10;procedure MasterData1OnAfterPrint(Sender: TfrxComponent);&#13;&#10;begin&#13;&#10;&#13;&#10;end;&#13;&#10;&#13;&#10;&#13;&#10;&#13;&#10;procedure Memo7OnMouseEnter(Sender: TfrxView; var Modified: Boolean);&#13;&#10;begin&#13;&#10;&#13;&#10;end;&#13;&#10;&#13;&#10;procedure podateOnAfterPrint(Sender: TfrxComponent);&#13;&#10;begin&#13;&#10;&#13;&#10;end;&#13;&#10;&#13;&#10;procedure podateOnBeforePrint(Sender: TfrxComponent);&#13;&#10;begin&#13;&#10;&#13;&#10;&#13;&#10;end;&#13;&#10;&#13;&#10;procedure BitBtn1OnClick(Sender: TfrxComponent);&#13;&#10;begin&#13;&#10;  TCODE:=listbox1.Items.Strings(listbox1.itemindex) ;&#13;&#10;  TCODE:=COPY(TCODE,1,POS(':',TCODE)-1) ;&#13;&#10;end;&#13;&#10;&#13;&#10;procedure OnKeyUp(Sender: TfrxComponent; var Key: Word; Shift: Integer);&#13;&#10;begin&#13;&#10;&#13;&#10;  if trim(keyword.text)='' then exit;&#13;&#10;&#13;&#10;  qry_medItem.close ;&#13;&#10;  qry_medItem.ParamByName('trade_code').value:=trim(keyword.text);&#13;&#10;  qry_medItem.ParamByName('trade_name').value:='%'+ uppercase(trim(keyword.text)) +'%' ;&#13;&#10;  qry_medItem.open ;&#13;&#10;&#13;&#10;   listbox1.Items.Clear  ;&#13;&#10;&#13;&#10;  while not qry_medItem.eof do&#13;&#10;  begin&#13;&#10;&#13;&#10;     listbox1.Items.Add(trim(qry_medItem.FieldByName('TRADE_CODE').asString)+': '+qry_medItem.FieldByName('TRADE_NAME').asString) ;&#13;&#10;&#13;&#10;  qry_medItem.next ;&#13;&#10;  end;&#13;&#10;&#13;&#10;   listbox1.ItemIndex:=0 ;&#13;&#10;&#13;&#10;&#13;&#10;end;&#13;&#10;&#13;&#10;begin&#13;&#10;&#13;&#10;end.">
  <Datasets>
    <item DataSet="qry_dept" DataSetName="dept"/>
    <item DataSet="qry_rp1" DataSetName="rp1"/>
    <item DataSet="qry_medItem" DataSetName="med"/>
  </Datasets>
  <Variables>
    <item Name="MY_STOCK_CODE"/>
    <item Name="MY_STOCK_NAME"/>
  </Variables>
  <TfrxDataPage Name="Data" Height="1000" Left="0" Top="0" Width="1000">
    <TfrxUniDACQuery Name="qry_rp1" UserName="rp1" CloseDataSource="True" FieldAliases.Text="" BCDToCurrency="False" IgnoreDupParams="False" SQL.Text="{if sqlserver}&#13;&#10;&#13;&#10;  &#13;&#10;select convert(varchar,s.QTY_DIST_E/s.PACK_RATIO)+' x '+ convert(varchar,s.PACK_RATIO) as QTY,&#13;&#10;dbo.cymd2be(s.DIST_DATE) as DISTDATE,convert(date,s.EXPIRED_DATE) as EXPIRE_DATE, d.DEPT_NAME,v.TRADE_NAME,s.*  &#13;&#10;from SM_PO_E s (NOLOCK) &#13;&#10;left join DEPT_ID d (NOLOCK) on (d.DEPT_ID = s.DEPT_ID) &#13;&#10;left join DRUG_VN v (NOLOCK) on (s.TRADE_CODE = v.TRADE_CODE) &#13;&#10;Where s.STOCK_ID=:stock_id                                                                                                                                                                          &#13;&#10;and s.DIST_DATE between :date1 and :date2 &#13;&#10;and s.TRADE_CODE=:trade_code                      &#13;&#10;and s.CANCEL_DIST='N'&#13;&#10;order by s.DIST_DATE&#13;&#10;&#13;&#10;&#13;&#10;{else}&#13;&#10;&#13;&#10;select convert(s.QTY_DIST_E/s.PACK_RATIO,char)+' x '+ convert(s.PACK_RATIO,char) as QTY,&#13;&#10;cymd2be(s.DIST_DATE) as DISTDATE,convert(s.EXPIRED_DATE,date) as EXPIRE_DATE, d.DEPT_NAME,v.TRADE_NAME, s.*&#13;&#10;from SM_PO_E s   &#13;&#10;left join DEPT_ID d on (d.DEPT_ID = s.DEPT_ID) &#13;&#10;left join DRUG_VN v on (s.TRADE_CODE = v.TRADE_CODE) &#13;&#10;Where s.STOCK_ID=:stock_id                                                                                                                                                                          &#13;&#10;and s.DIST_DATE between :date1 and :date2 &#13;&#10;and s.TRADE_CODE=:trade_code                      &#13;&#10;and s.CANCEL_DIST='N'&#13;&#10;order by s.DIST_DATE                                                                                                                                                        &#13;&#10;    &#13;&#10;&#13;&#10;{endif}      &#13;&#10;  " SpecificOptions.Text="" PropData="05704C6566740350010470546F7003C0000A506172616D657465727301010C49000000204E616D653D2273746F636B5F6964222044617461547970653D226674537472696E67222045787072657373696F6E3D22262336303B4D595F53544F434B5F434F4445262336323B2200010C54000000204E616D653D226461746531222044617461547970653D226674537472696E67222045787072657373696F6E3D22466F726D61744461746554696D652827595959596D6D6464272C64617465312E64617465292200010C54000000204E616D653D226461746532222044617461547970653D226674537472696E67222045787072657373696F6E3D22466F726D61744461746554696D652827595959596D6D6464272C64617465322E64617465292200010C43000000204E616D653D2274726164655F636F6465222044617461547970653D226674537472696E67222045787072657373696F6E3D22262336303B54434F4445262336323B2200010C49000000204E616D653D2273746F636B5F6964222044617461547970653D226674537472696E67222045787072657373696F6E3D22262336303B4D595F53544F434B5F434F4445262336323B2200010C54000000204E616D653D226461746531222044617461547970653D226674537472696E67222045787072657373696F6E3D22466F726D61744461746554696D652827595959596D6D6464272C64617465312E64617465292200010C54000000204E616D653D226461746532222044617461547970653D226674537472696E67222045787072657373696F6E3D22466F726D61744461746554696D652827595959596D6D6464272C64617465322E64617465292200010C43000000204E616D653D2274726164655F636F6465222044617461547970653D226674537472696E67222045787072657373696F6E3D22262336303B54434F4445262336323B220000"/>
    <TfrxUniDACQuery Name="qry_dept" UserName="dept" CloseDataSource="True" FieldAliases.Text="" BCDToCurrency="False" IgnoreDupParams="False" SQL.Text="select * from DEPT_ID where (HIDE is null or HIDE='' or HIDE='N') and DEPT_TYPE=1                                                                                              " SpecificOptions.Text="" PropData="05704C656674034C010470546F700308010A506172616D65746572730100"/>
    <TfrxUniDACQuery Name="qry_medItem" UserName="med" CloseDataSource="True" FieldAliases.Text="" BCDToCurrency="False" IgnoreDupParams="False" SQL.Text="select * from DRUG_VN &#13;&#10;where TRADE_CODE=:trade_code or upper(TRADE_NAME) like :trade_name                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               " SpecificOptions.Text="" PropData="05704C65667403C4000470546F7003BC000A506172616D657465727301010C27000000204E616D653D2274726164655F636F6465222044617461547970653D226674556E6B6E6F776E2200010C27000000204E616D653D2274726164655F6E616D65222044617461547970653D226674556E6B6E6F776E220000"/>
  </TfrxDataPage>
  <TfrxReportPage Name="Page1" Orientation="poLandscape" PaperWidth="297" PaperHeight="210" PaperSize="9" LeftMargin="5" RightMargin="5" TopMargin="5" BottomMargin="5" ColumnWidth="0" ColumnPositions.Text="" HGuides.Text="" VGuides.Text="" OnBeforePrint="Page1OnBeforePrint">
    <TfrxPageHeader Name="PageHeader1" FillType="ftBrush" FillGap.Top="0" FillGap.Left="0" FillGap.Bottom="0" FillGap.Right="0" Height="113.3859" Left="0" Top="16" Width="1084.72511">
      <TfrxMemoView Name="Memo1" Left="2" Top="3.33859" Width="1080.94558" Height="75.5906" AllowHTMLTags="True" Font.Charset="1" Font.Color="-16777208" Font.Height="-21" Font.Name="TH SarabunPSK" Font.Style="0" HAlign="haCenter" ParentFont="False" Text="&#60;b&#62;รายงานจ่ายยาด่วนตามชื่อยา&#60;/b&#62;&#13;&#10;ตั้งแต่เดือน  [CE2TBE(date1.date)] ถึงเดือน [CE2TBE(date2.date)] &#13;&#10;ชื่อยา [listbox1.Items.Strings(listbox1.itemindex)]">
        <Formats>
          <item/>
          <item/>
          <item/>
        </Formats>
      </TfrxMemoView>
      <TfrxLineView Name="Line1" Left="4.30705" Top="82.5906" Width="1080.94558" Height="0" Color="0" Frame.Color="13421772" Frame.Typ="4"/>
      <TfrxLineView Name="Line2" Left="3.77953" Top="110.3859" Width="1080.94558" Height="0" Color="0" Frame.Color="13421772" Frame.Typ="4"/>
      <TfrxMemoView Name="Memo2" Left="59.67718" Top="84.92919" Width="56.69295" Height="22.67718" Font.Charset="1" Font.Color="-16777208" Font.Height="-19" Font.Name="TH SarabunPSK" Font.Style="0" ParentFont="False" Text="วันจ่าย"/>
      <TfrxMemoView Name="Memo3" Left="469.25232" Top="84.92919" Width="60.47248" Height="22.67718" Font.Charset="1" Font.Color="-16777208" Font.Height="-19" Font.Name="TH SarabunPSK" Font.Style="0" ParentFont="False" Text="จำนวนจ่าย"/>
      <TfrxMemoView Name="Memo4" Left="126.44094" Top="84.92919" Width="83.14966" Height="22.67718" Font.Charset="1" Font.Color="-16777208" Font.Height="-19" Font.Name="TH SarabunPSK" Font.Style="0" ParentFont="False" Text="เลขที่บิล"/>
      <TfrxMemoView Name="Memo5" Left="198.14966" Top="85.14966" Width="45.35436" Height="22.67718" Font.Charset="1" Font.Color="-16777208" Font.Height="-19" Font.Name="TH SarabunPSK" Font.Style="0" ParentFont="False" Text="รหัสยา"/>
      <TfrxMemoView Name="Memo9" Left="253.02381" Top="85.14966" Width="98.26778" Height="22.67718" Font.Charset="1" Font.Color="-16777208" Font.Height="-19" Font.Name="TH SarabunPSK" Font.Style="0" HAlign="haCenter" ParentFont="False" Text="ชื่อยา"/>
      <TfrxMemoView Name="Memo10" Left="541.99258" Top="84.92919" Width="71.81107" Height="22.67718" Font.Charset="1" Font.Color="-16777208" Font.Height="-19" Font.Name="TH SarabunPSK" Font.Style="0" ParentFont="False" Text="ขนาดบรรจุ"/>
      <TfrxMemoView Name="Memo11" Left="831.55968" Top="84.37013" Width="34.01577" Height="22.67718" Font.Charset="1" Font.Color="-16777208" Font.Height="-19" Font.Name="TH SarabunPSK" Font.Style="0" ParentFont="False" Text="มูลค่า"/>
      <TfrxMemoView Name="Memo14" Left="633.1107" Top="84.14966" Width="71.81107" Height="22.67718" Font.Charset="1" Font.Color="-16777208" Font.Height="-19" Font.Name="TH SarabunPSK" Font.Style="0" ParentFont="False" Text="วันที่หมดอายุ"/>
      <TfrxMemoView Name="Memo16" Left="726.2919" Top="84.14966" Width="52.91342" Height="22.67718" Font.Charset="1" Font.Color="-16777208" Font.Height="-19" Font.Name="TH SarabunPSK" Font.Style="0" ParentFont="False" Text="Lot No."/>
      <TfrxMemoView Name="Memo18" Left="912.45733" Top="83.14966" Width="52.91342" Height="22.67718" Font.Charset="1" Font.Color="-16777208" Font.Height="-19" Font.Name="TH SarabunPSK" Font.Style="0" ParentFont="False" Text=" จ่ายไปยัง"/>
      <TfrxMemoView Name="Memo20" Left="1020.4731" Top="83.14966" Width="52.91342" Height="22.67718" Font.Charset="1" Font.Color="-16777208" Font.Height="-19" Font.Name="TH SarabunPSK" Font.Style="0" ParentFont="False" Text="เลขที่โอน"/>
    </TfrxPageHeader>
    <TfrxPageFooter Name="PageFooter1" FillType="ftBrush" FillGap.Top="0" FillGap.Left="0" FillGap.Bottom="0" FillGap.Right="0" Height="22.67718" Left="0" Top="272" Width="1084.72511"/>
    <TfrxMasterData Name="MasterData1" FillType="ftBrush" FillGap.Top="0" FillGap.Left="0" FillGap.Bottom="0" FillGap.Right="0" Height="26.45671" Left="0" Top="148" Width="1084.72511" OnAfterPrint="MasterData1OnAfterPrint" OnBeforePrint="MasterData1OnBeforePrint" ColumnWidth="0" ColumnGap="0" DataSet="qry_rp1" DataSetName="rp1" RowCount="0">
      <TfrxMemoView Name="podate" Left="29.67718" Top="1" Width="75.5906" Height="22.67718" OnAfterPrint="podateOnAfterPrint" OnBeforePrint="podateOnBeforePrint" DataSet="qry_rp1" DataSetName="rp1" Font.Charset="1" Font.Color="-16777208" Font.Height="-19" Font.Name="TH SarabunPSK" Font.Style="0" HAlign="haRight" ParentFont="False" Text="[CYMD2DBSTR(&#60;rp1.&#34;DIST_DATE&#34;&#62;)]"/>
      <TfrxMemoView Name="rp1COMPANY_NAME" Left="542.09493" Top="1.77953" Width="71.81107" Height="22.67718" DataSet="qry_rp1" DataSetName="rp1" Font.Charset="1" Font.Color="-16777208" Font.Height="-19" Font.Name="TH SarabunPSK" Font.Style="0" ParentFont="False" Text="[rp1.&#34;PACK_RATIO&#34;]">
        <Formats>
          <item FormatStr="%2.0n" Kind="fkNumeric"/>
          <item/>
          <item/>
        </Formats>
      </TfrxMemoView>
      <TfrxMemoView Name="rp1INVOICE_NO" Left="248.68522" Top="1" Width="268.34663" Height="22.67718" DataSet="qry_rp1" DataSetName="rp1" Font.Charset="1" Font.Color="-16777208" Font.Height="-19" Font.Name="TH SarabunPSK" Font.Style="0" ParentFont="False" Text="[rp1.&#34;TRADE_NAME&#34;]"/>
      <TfrxMemoView Name="rp1TOTAL_COST" Left="424.37044" Top="1.77953" Width="102.04731" Height="22.67718" DataSet="qry_rp1" DataSetName="rp1" Font.Charset="1" Font.Color="-16777208" Font.Height="-19" Font.Name="TH SarabunPSK" Font.Style="0" HAlign="haRight" ParentFont="False" Text="[&#60;rp1.&#34;QTY_DIST_E&#34;&#62;/&#60;rp1.&#34;PACK_RATIO&#34;&#62;]">
        <Formats>
          <item FormatStr="%2.0n" Kind="fkNumeric"/>
          <item/>
        </Formats>
      </TfrxMemoView>
      <TfrxMemoView Name="Memo7" Left="106.26778" Top="1" Width="83.14966" Height="22.67718" DataSet="qry_rp1" DataSetName="rp1" Font.Charset="1" Font.Color="-16777208" Font.Height="-19" Font.Name="TH SarabunPSK" Font.Style="0" ParentFont="False" Text="[rp1.&#34;INV_NO&#34;]"/>
      <TfrxMemoView Name="Memo8" Left="187.09462" Top="1.77953" Width="64.25201" Height="22.67718" DataSet="qry_rp1" DataSetName="rp1" Font.Charset="1" Font.Color="-16777208" Font.Height="-19" Font.Name="TH SarabunPSK" Font.Style="0" ParentFont="False" Text="[rp1.&#34;TRADE_CODE&#34;]"/>
      <TfrxMemoView Name="Memo12" Left="788.86673" Top="0.22047" Width="86.92919" Height="22.67718" DataSet="qry_rp1" DataSetName="rp1" DisplayFormat.FormatStr="%2.2n" DisplayFormat.Kind="fkNumeric" Font.Charset="1" Font.Color="-16777208" Font.Height="-19" Font.Name="TH SarabunPSK" Font.Style="0" HAlign="haRight" ParentFont="False" Text="[rp1.&#34;COST&#34;]"/>
      <TfrxMemoView Name="Memo13" Left="527.94527" Top="1.77953" Width="15.11812" Height="22.67718" DataSet="qry_rp1" DataSetName="rp1" Font.Charset="1" Font.Color="-16777208" Font.Height="-19" Font.Name="TH SarabunPSK" Font.Style="0" ParentFont="False" Text="X"/>
      <TfrxMemoView Name="Memo15" Left="615.66976" Top="1" Width="83.14966" Height="22.67718" Font.Charset="1" Font.Color="-16777208" Font.Height="-19" Font.Name="TH SarabunPSK" Font.Style="0" HAlign="haRight" ParentFont="False" Text="[CYMD2DBSTR(&#60;rp1.&#34;EXPIRED_DATE&#34;&#62;)]"/>
      <TfrxMemoView Name="Memo22" Left="1" Top="1" Width="30.23624" Height="22.67718" DataSet="qry_rp1" DataSetName="rp1" Font.Charset="1" Font.Color="-16777208" Font.Height="-19" Font.Name="TH SarabunPSK" Font.Style="0" HAlign="haRight" ParentFont="False" Text="[i]."/>
      <TfrxMemoView Name="Memo17" Left="698.59895" Top="1" Width="86.92919" Height="22.67718" DataSet="qry_rp1" DataSetName="rp1" DisplayFormat.FormatStr="%2.2n" DisplayFormat.Kind="fkNumeric" Font.Charset="1" Font.Color="-16777208" Font.Height="-19" Font.Name="TH SarabunPSK" Font.Style="0" HAlign="haRight" ParentFont="False" Text="[rp1.&#34;LOT_NO&#34;]"/>
      <TfrxMemoView Name="Memo19" Left="883.32344" Top="1" Width="136.06308" Height="22.67718" Font.Charset="1" Font.Color="-16777208" Font.Height="-19" Font.Name="TH SarabunPSK" Font.Style="0" ParentFont="False" Text="[rp1.&#34;DEPT_NAME&#34;]"/>
      <TfrxMemoView Name="Memo21" Left="986.45733" Top="1" Width="94.48825" Height="22.67718" Font.Charset="1" Font.Color="-16777208" Font.Height="-19" Font.Name="TH SarabunPSK" Font.Style="0" HAlign="haRight" ParentFont="False" Text="[rp1.&#34;SUB_PO_NO&#34;]"/>
    </TfrxMasterData>
    <TfrxReportSummary Name="ReportSummary1" FillType="ftBrush" FillGap.Top="0" FillGap.Left="0" FillGap.Bottom="0" FillGap.Right="0" Height="56.69295" Left="0" Top="196" Width="1084.72511">
      <TfrxMemoView Name="Memo6" Left="729.44929" Top="20.67718" Width="343.93723" Height="22.67718" DisplayFormat.FormatStr="%2.2n" DisplayFormat.Kind="fkNumeric" Font.Charset="1" Font.Color="-16777208" Font.Height="-21" Font.Name="TH SarabunPSK" Font.Style="1" HAlign="haRight" ParentFont="False" Text="รวมทั้งสิ้น   [SUM(&#60;rp1.&#34;COST&#34;&#62;,MasterData1)] บาท"/>
    </TfrxReportSummary>
  </TfrxReportPage>
  <TfrxDialogPage Name="DialogPage1" Font.Charset="1" Font.Color="0" Font.Height="-11" Font.Name="Tahoma" Font.Style="0" BorderStyle="bsDialog" Caption="§ҹҴǹ" Color="16770263" Height="438" ClientHeight="400" Left="297" Position="poMainFormCenter" Top="190" Width="517" ClientWidth="501" OnActivate="DialogPage1OnActivate">
    <TfrxDateEditControl Name="date1" Left="85" Top="13" Width="117" Height="25" Font.Charset="1" Font.Color="0" Font.Height="-16" Font.Name="MS Sans Serif" Font.Style="0" ParentFont="False" ShowHint="True" Color="-16777211" Date="41559.6971358681" Time="41559.6971358681" WeekNumbers="False"/>
    <TfrxDateEditControl Name="date2" Left="261" Top="13" Width="117" Height="25" Font.Charset="1" Font.Color="0" Font.Height="-16" Font.Name="MS Sans Serif" Font.Style="0" ParentFont="False" ShowHint="True" Color="-16777211" Date="41559.6971358681" Time="41559.6971358681" WeekNumbers="False"/>
    <TfrxBitBtnControl Name="BitBtn1" Left="404" Top="360" Width="87" Height="33" Font.Charset="0" Font.Color="-16777208" Font.Height="-21" Font.Name="AngsanaUPC" Font.Style="0" ParentFont="False" ShowHint="True" Glyph.PropData="04446174610AE2010000DE010000424DDE01000000000000760000002800000024000000120000000100040000000000680100000000000000000000100000000000000000000000000080000080000000808000800000008000800080800000C0C0C000808080000000FF0000FF000000FFFF00FF000000FF00FF00FFFF0000FFFFFF003333333333333333333333333333333333330000333333333333333333333333F3333333333300003333344333333333333333388F3333333333000033334224333333333333338338F3333333330000333422224333333333333833338F3333333300003342222224333333333383333338F3333333000034222A22224333333338F338F3338F33333300003222A3A2224333333338F3838F338F33333300003A2A333A222433333338F83338F338F33333000033A33333A222433333338333338F338F33330000333333333A222433333333333338F338F33300003333333333A222433333333333338F338F33000033333333333A222433333333333338F338F30000333333333333A222433333333333338F338F00003333333333333A224333333333333338F38F000033333333333333A223333333333333338F830000333333333333333A3333333333333333383300003333333333333333333333333333333333330000" Kind="bkOK" Caption="OK" ModalResult="1" NumGlyphs="2" OnClick="BitBtn1OnClick"/>
    <TfrxLabelControl Name="Label1" Left="19" Top="16" Width="60" Height="20" Font.Charset="0" Font.Color="-16777208" Font.Height="-16" Font.Name="MS Sans Serif" Font.Style="0" ParentFont="False" ShowHint="True" Caption="ѹ" Color="16768462"/>
    <TfrxLabelControl Name="Label2" Left="213" Top="15" Width="42" Height="20" Font.Charset="0" Font.Color="-16777208" Font.Height="-16" Font.Name="MS Sans Serif" Font.Style="0" ParentFont="False" ShowHint="True" Caption="֧ѹ" Color="16768462"/>
    <TfrxListBoxControl Name="ListBox1" Left="14" Top="85" Width="473" Height="265" Font.Charset="1" Font.Color="0" Font.Height="-16" Font.Name="Tahoma" Font.Style="0" ParentFont="False" ShowHint="True" Color="-16777211" Items.Text=""/>
    <TfrxEditControl Name="keyword" Left="84" Top="48" Width="401" Height="29" Font.Charset="1" Font.Color="0" Font.Height="-16" Font.Name="Tahoma" Font.Style="0" ParentFont="False" ShowHint="True" Color="-16777211" MaxLength="0" PasswordChar="0" OnKeyUp="OnKeyUp"/>
    <TfrxLabelControl Name="Label3" Left="14" Top="53" Width="66" Height="20" Font.Charset="0" Font.Color="-16777208" Font.Height="-16" Font.Name="MS Sans Serif" Font.Style="0" ParentFont="False" ShowHint="True" Caption="Ҫ" Color="16768462"/>
  </TfrxDialogPage>
</TfrxReport>
