Barcode2.frx
1.21 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
<?xml version="1.0" encoding="utf-8"?>
<Report ScriptLanguage="CSharp" ReportInfo.Created="06/03/2016 17:38:33" ReportInfo.Modified="08/31/2018 11:01:11" ReportInfo.CreatorVersion="2016.1.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 Barcode1_Click(object sender, EventArgs e)
{
}
}
}
</ScriptText>
<Dictionary>
<Parameter Name="Barcode" DataType="System.String"/>
</Dictionary>
<ReportPage Name="Page1" PaperWidth="90" PaperHeight="60" LeftMargin="0" TopMargin="0" RightMargin="0" BottomMargin="0" FirstPageSource="4" OtherPagesSource="4">
<DataBand Name="Data1" Width="340.2" Height="226.8">
<BarcodeObject Name="Barcode1" Left="47.25" Top="37.8" Width="196.88" Height="154.6" ClickEvent="Barcode1_Click" Expression="[Barcode]" Text="A0001" Zoom="1.75" Barcode="Code128" Barcode.AutoEncode="true"/>
</DataBand>
</ReportPage>
</Report>