Print Entered Value.frx 2.3 KB

123456789101112131415161718
  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:43:55" 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="463.05" Height="18.9" Text="You have entered: [TextBox1.Text]" 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" AcceptButton="btnOK" CancelButton="btnCancel" AutoScaleDimensions="192, 192" Font="Segoe UI, 9pt" ClientSize="446, 278">
  13. <ButtonControl Name="btnOK" Left="112" Top="204" Width="150" Height="46" Font="Segoe UI, 9pt" TabIndex="1" Text="OK" DialogResult="OK"/>
  14. <ButtonControl Name="btnCancel" Left="272" Top="204" Width="150" Height="46" Font="Segoe UI, 9pt" TabIndex="2" Text="Cancel" DialogResult="Cancel"/>
  15. <LabelControl Name="Label1" Left="24" Top="24" Width="151" Font="Segoe UI, 9pt" TabIndex="3" Text="Enter the text:"/>
  16. <TextBoxControl Name="TextBox1" Left="24" Top="64" Width="396" Height="40" BackColor="255, 255, 255" Font="Segoe UI, 9pt" TabIndex="0" Text="Hello!"/>
  17. </DialogPage>
  18. </Report>