-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathFrmReport.Designer.cs
More file actions
113 lines (107 loc) · 5.13 KB
/
FrmReport.Designer.cs
File metadata and controls
113 lines (107 loc) · 5.13 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
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
namespace TireProject
{
partial class FrmReport
{
/// <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();
System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(FrmReport));
this.CarnetBindingSource = new System.Windows.Forms.BindingSource(this.components);
this.TirDS = new TireProject.TirDS();
this.fKCarnetGoodsBindingSource = new System.Windows.Forms.BindingSource(this.components);
this.myReportViewer = new Microsoft.Reporting.WinForms.ReportViewer();
this.CarnetTableAdapter = new TireProject.TirDSTableAdapters.CarnetTableAdapter();
this.goodsTableAdapter = new TireProject.TirDSTableAdapters.GoodsTableAdapter();
this.goodsBindingSource = new System.Windows.Forms.BindingSource(this.components);
((System.ComponentModel.ISupportInitialize)(this.CarnetBindingSource)).BeginInit();
((System.ComponentModel.ISupportInitialize)(this.TirDS)).BeginInit();
((System.ComponentModel.ISupportInitialize)(this.fKCarnetGoodsBindingSource)).BeginInit();
((System.ComponentModel.ISupportInitialize)(this.goodsBindingSource)).BeginInit();
this.SuspendLayout();
//
// CarnetBindingSource
//
this.CarnetBindingSource.DataMember = "Carnet";
this.CarnetBindingSource.DataSource = this.TirDS;
//
// TirDS
//
this.TirDS.DataSetName = "TirDS";
this.TirDS.EnforceConstraints = false;
this.TirDS.SchemaSerializationMode = System.Data.SchemaSerializationMode.IncludeSchema;
//
// fKCarnetGoodsBindingSource
//
this.fKCarnetGoodsBindingSource.DataMember = "Goods";
this.fKCarnetGoodsBindingSource.DataSource = this.TirDS;
//
// myReportViewer
//
this.myReportViewer.Dock = System.Windows.Forms.DockStyle.Fill;
this.myReportViewer.Location = new System.Drawing.Point(0, 0);
this.myReportViewer.Name = "myReportViewer";
this.myReportViewer.ServerReport.BearerToken = null;
this.myReportViewer.Size = new System.Drawing.Size(873, 542);
this.myReportViewer.TabIndex = 0;
this.myReportViewer.Load += new System.EventHandler(this.myReportViewer_Load);
//
// CarnetTableAdapter
//
this.CarnetTableAdapter.ClearBeforeFill = true;
//
// goodsTableAdapter
//
this.goodsTableAdapter.ClearBeforeFill = true;
//
// goodsBindingSource
//
this.goodsBindingSource.DataMember = "Goods";
this.goodsBindingSource.DataSource = this.TirDS;
//
// FrmReport
//
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.ClientSize = new System.Drawing.Size(873, 542);
this.Controls.Add(this.myReportViewer);
this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
this.Name = "FrmReport";
this.Text = "ReportFrm";
this.Load += new System.EventHandler(this.ReportFrm_Load);
((System.ComponentModel.ISupportInitialize)(this.CarnetBindingSource)).EndInit();
((System.ComponentModel.ISupportInitialize)(this.TirDS)).EndInit();
((System.ComponentModel.ISupportInitialize)(this.fKCarnetGoodsBindingSource)).EndInit();
((System.ComponentModel.ISupportInitialize)(this.goodsBindingSource)).EndInit();
this.ResumeLayout(false);
}
#endregion
private Microsoft.Reporting.WinForms.ReportViewer myReportViewer;
private System.Windows.Forms.BindingSource CarnetBindingSource;
private TirDS TirDS;
private TirDSTableAdapters.CarnetTableAdapter CarnetTableAdapter;
private System.Windows.Forms.BindingSource fKCarnetGoodsBindingSource;
private TirDSTableAdapters.GoodsTableAdapter goodsTableAdapter;
private System.Windows.Forms.BindingSource goodsBindingSource;
}
}