-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathInvoice.Designer.cs
99 lines (93 loc) · 4.35 KB
/
Invoice.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
namespace Walmart_OMS
{
partial class Invoice
{
/// <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.order_Inv = new Walmart_OMS.Order_Inv();
this.reportViewer1 = new Microsoft.Reporting.WinForms.ReportViewer();
this.CartsBindingSource = new System.Windows.Forms.BindingSource(this.components);
this.cartsBindingSource1 = new System.Windows.Forms.BindingSource(this.components);
this.cartsTableAdapter = new Walmart_OMS.Order_InvTableAdapters.CartsTableAdapter();
((System.ComponentModel.ISupportInitialize)(this.order_Inv)).BeginInit();
((System.ComponentModel.ISupportInitialize)(this.CartsBindingSource)).BeginInit();
((System.ComponentModel.ISupportInitialize)(this.cartsBindingSource1)).BeginInit();
this.SuspendLayout();
//
// order_Inv
//
this.order_Inv.DataSetName = "Order_Inv";
this.order_Inv.SchemaSerializationMode = System.Data.SchemaSerializationMode.IncludeSchema;
//
// reportViewer1
//
this.reportViewer1.Dock = System.Windows.Forms.DockStyle.Fill;
reportDataSource1.Name = "DataSet1";
reportDataSource1.Value = this.CartsBindingSource;
this.reportViewer1.LocalReport.DataSources.Add(reportDataSource1);
this.reportViewer1.LocalReport.ReportEmbeddedResource = "Walmart_OMS.User_Invoice.rdlc";
this.reportViewer1.Location = new System.Drawing.Point(0, 0);
this.reportViewer1.Name = "reportViewer1";
this.reportViewer1.ServerReport.BearerToken = null;
this.reportViewer1.Size = new System.Drawing.Size(800, 580);
this.reportViewer1.TabIndex = 0;
//
// CartsBindingSource
//
this.CartsBindingSource.DataMember = "Carts";
this.CartsBindingSource.DataSource = this.order_Inv;
//
// cartsBindingSource1
//
this.cartsBindingSource1.DataMember = "Carts";
this.cartsBindingSource1.DataSource = this.order_Inv;
//
// cartsTableAdapter
//
this.cartsTableAdapter.ClearBeforeFill = true;
//
// Invoice
//
this.AutoScaleDimensions = new System.Drawing.SizeF(8F, 16F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.ClientSize = new System.Drawing.Size(800, 580);
this.Controls.Add(this.reportViewer1);
this.Name = "Invoice";
this.Text = "Invoice";
this.Load += new System.EventHandler(this.Invoice_Load);
((System.ComponentModel.ISupportInitialize)(this.order_Inv)).EndInit();
((System.ComponentModel.ISupportInitialize)(this.CartsBindingSource)).EndInit();
((System.ComponentModel.ISupportInitialize)(this.cartsBindingSource1)).EndInit();
this.ResumeLayout(false);
}
#endregion
private Order_Inv order_Inv;
private Microsoft.Reporting.WinForms.ReportViewer reportViewer1;
private System.Windows.Forms.BindingSource cartsBindingSource1;
private System.Windows.Forms.BindingSource CartsBindingSource;
private Order_InvTableAdapters.CartsTableAdapter cartsTableAdapter;
}
}