Hello, FastReport!.frx 2.2 KB

1234567891011121314151617
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <Report ScriptLanguage="CSharp" ReportInfo.Description="Demonstrates how to add a simple dialog form to the report. To do this:&#13;&#10;- press the &quot;New Dialog&quot; button on a toolbar;&#13;&#10;- this will create an empty dialog form with two default buttons. Put some controls on it and set its properties as you want.&#13;&#10;&#13;&#10;When you run a report, you will see the dialog. If you close it by the &quot;OK&quot; button, a report will be generated.&#13;&#10;&#13;&#10;Note: you may add several dialogs.&#13;&#10;&#13;&#10;Learn about various report objects on the Fast Reports Academy channel http://fast.report/afd51" ReportInfo.Created="01/18/2008 03:08:14" ReportInfo.Modified="03/29/2023 00:39:21" ReportInfo.CreatorVersion="1.0.0.0">
  3. <Dictionary/>
  4. <ReportPage Name="Page1" Watermark.Font="Arial, 60pt">
  5. <ReportTitleBand Name="ReportTitle1" Width="718.2" Height="37.8" CanGrow="true">
  6. <TextObject Name="Text1" Width="245.7" Height="28.35" Text="The report goes here..." Font="Segoe UI, 10pt, style=Bold" TextFill.Color="Firebrick"/>
  7. </ReportTitleBand>
  8. <PageFooterBand Name="PageFooter1" Top="39.8" Width="718.2" Height="28.35" Fill.Color="WhiteSmoke">
  9. <TextObject Name="Text12" Left="9.45" Width="217.35" Height="28.35" Cursor="Hand" Hyperlink.Value="https://www.fast-report.com/en/product/fast-report-net/" Text="Generated by FastReport" VertAlign="Center" Font="Segoe UI, 9pt, style=Underline" TextFill.Color="Blue"/>
  10. </PageFooterBand>
  11. </ReportPage>
  12. <DialogPage Name="Form1" AutoScaleDimensions="192, 192" Font="Segoe UI, 9pt" Text="Hello, FastReport!" ClientSize="494, 282">
  13. <ButtonControl Name="Button1" Left="160" Top="208" Width="150" Height="46" Font="Segoe UI, 9pt" TabIndex="0" Text="OK" DialogResult="OK"/>
  14. <ButtonControl Name="Button2" Left="320" Top="208" Width="150" Height="46" Font="Segoe UI, 9pt" TabIndex="1" Text="Cancel" DialogResult="Cancel"/>
  15. <LabelControl Name="Label1" Left="68" Top="44" Width="360" Height="64" Font="Segoe UI, 9pt" TabIndex="2" Text="Press OK button to run a report; press Cancel to terminate it." AutoSize="false" TextAlign="MiddleCenter"/>
  16. </DialogPage>
  17. </Report>