-
Notifications
You must be signed in to change notification settings - Fork 2
/
frmSlip.Designer.cs
130 lines (124 loc) · 5.65 KB
/
frmSlip.Designer.cs
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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
namespace h24
{
partial class frmSlip
{
/// <summary>
/// Required designer variable.
/// </summary>
private System.ComponentModel.IContainer components = null;
/// <summary>
/// Clean up any resources being used.
/// </summary>
/// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
protected override void Dispose(bool disposing)
{
if (disposing && (components != null))
{
components.Dispose();
}
base.Dispose(disposing);
}
#region Windows Form Designer generated code
/// <summary>
/// Required method for Designer support - do not modify
/// the contents of this method with the code editor.
/// </summary>
private void InitializeComponent()
{
this.components = new System.ComponentModel.Container();
Microsoft.Reporting.WinForms.ReportDataSource reportDataSource1 = new Microsoft.Reporting.WinForms.ReportDataSource();
this.slipsBindingSource = new System.Windows.Forms.BindingSource(this.components);
this.slip = new h24.slip();
this.reportViewer1 = new Microsoft.Reporting.WinForms.ReportViewer();
this.slipsTableAdapter = new h24.slipTableAdapters.slipsTableAdapter();
this.btRefresh = new System.Windows.Forms.Button();
this.reportViewer2 = new Microsoft.Reporting.WinForms.ReportViewer();
this.btClose = new System.Windows.Forms.Button();
((System.ComponentModel.ISupportInitialize)(this.slipsBindingSource)).BeginInit();
((System.ComponentModel.ISupportInitialize)(this.slip)).BeginInit();
this.SuspendLayout();
//
// slipsBindingSource
//
this.slipsBindingSource.DataMember = "slips";
this.slipsBindingSource.DataSource = this.slip;
//
// slip
//
this.slip.DataSetName = "slip";
this.slip.SchemaSerializationMode = System.Data.SchemaSerializationMode.IncludeSchema;
//
// reportViewer1
//
reportDataSource1.Name = "dsSlip";
reportDataSource1.Value = this.slipsBindingSource;
this.reportViewer1.LocalReport.DataSources.Add(reportDataSource1);
this.reportViewer1.LocalReport.ReportEmbeddedResource = "h24.rptSlip1.rdlc";
this.reportViewer1.Location = new System.Drawing.Point(141, 55);
this.reportViewer1.Margin = new System.Windows.Forms.Padding(3, 4, 3, 4);
this.reportViewer1.Name = "reportViewer1";
this.reportViewer1.Size = new System.Drawing.Size(675, 1000);
this.reportViewer1.TabIndex = 0;
//
// slipsTableAdapter
//
this.slipsTableAdapter.ClearBeforeFill = true;
//
// btRefresh
//
this.btRefresh.Location = new System.Drawing.Point(400, 21);
this.btRefresh.Margin = new System.Windows.Forms.Padding(3, 4, 3, 4);
this.btRefresh.Name = "btRefresh";
this.btRefresh.Size = new System.Drawing.Size(84, 29);
this.btRefresh.TabIndex = 1;
this.btRefresh.Text = "Refresh";
this.btRefresh.UseVisualStyleBackColor = true;
this.btRefresh.Click += new System.EventHandler(this.button1_Click);
//
// reportViewer2
//
this.reportViewer2.Location = new System.Drawing.Point(0, 0);
this.reportViewer2.Name = "ReportViewer";
this.reportViewer2.Size = new System.Drawing.Size(396, 246);
this.reportViewer2.TabIndex = 0;
//
// btClose
//
this.btClose.Location = new System.Drawing.Point(1051, 75);
this.btClose.Name = "btClose";
this.btClose.Size = new System.Drawing.Size(92, 41);
this.btClose.TabIndex = 2;
this.btClose.Text = "Close";
this.btClose.UseVisualStyleBackColor = true;
this.btClose.Click += new System.EventHandler(this.btClose_Click);
//
// frmSlip
//
this.AutoScaleDimensions = new System.Drawing.SizeF(9F, 20F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.AutoScroll = true;
this.ClientSize = new System.Drawing.Size(1335, 797);
this.Controls.Add(this.btClose);
this.Controls.Add(this.btRefresh);
this.Controls.Add(this.reportViewer1);
this.KeyPreview = true;
this.Margin = new System.Windows.Forms.Padding(3, 4, 3, 4);
this.Name = "frmSlip";
this.Text = "frmSlip";
this.Load += new System.EventHandler(this.frmSlip_Load);
this.KeyDown += new System.Windows.Forms.KeyEventHandler(this.frmSlip_KeyDown);
((System.ComponentModel.ISupportInitialize)(this.slipsBindingSource)).EndInit();
((System.ComponentModel.ISupportInitialize)(this.slip)).EndInit();
this.ResumeLayout(false);
}
#endregion
private Microsoft.Reporting.WinForms.ReportViewer reportViewer1;
private System.Windows.Forms.BindingSource slipsBindingSource;
private slip slip;
private slipTableAdapters.slipsTableAdapter slipsTableAdapter;
private System.Windows.Forms.Button btRefresh;
private Microsoft.Reporting.WinForms.ReportViewer reportViewer2;
private System.Windows.Forms.Button btClose;
}
}