-
Notifications
You must be signed in to change notification settings - Fork 0
/
AccountRecord.Designer.cs
173 lines (167 loc) · 8.91 KB
/
AccountRecord.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
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
namespace WindowsFormsApplication1
{
partial class AccountRecord
{
/// <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();
this.dataGridView1 = new System.Windows.Forms.DataGridView();
this.dataGridViewTextBoxColumn1 = new System.Windows.Forms.DataGridViewTextBoxColumn();
this.dataGridViewTextBoxColumn2 = new System.Windows.Forms.DataGridViewTextBoxColumn();
this.dataGridViewTextBoxColumn3 = new System.Windows.Forms.DataGridViewTextBoxColumn();
this.accountBindingSource1 = new System.Windows.Forms.BindingSource(this.components);
this.iCBankDataSet1 = new WindowsFormsApplication1.ICBankDataSet();
this.accountBindingSource = new System.Windows.Forms.BindingSource(this.components);
this.button1 = new System.Windows.Forms.Button();
this.accountTableAdapter1 = new WindowsFormsApplication1.ICBankDataSetTableAdapters.AccountTableAdapter();
this.iCBankDataSet4 = new WindowsFormsApplication1.ICBankDataSet4();
this.accountBindingSource2 = new System.Windows.Forms.BindingSource(this.components);
this.accountTableAdapter2 = new WindowsFormsApplication1.ICBankDataSet4TableAdapters.AccountTableAdapter();
((System.ComponentModel.ISupportInitialize)(this.dataGridView1)).BeginInit();
((System.ComponentModel.ISupportInitialize)(this.accountBindingSource1)).BeginInit();
((System.ComponentModel.ISupportInitialize)(this.iCBankDataSet1)).BeginInit();
((System.ComponentModel.ISupportInitialize)(this.accountBindingSource)).BeginInit();
((System.ComponentModel.ISupportInitialize)(this.iCBankDataSet4)).BeginInit();
((System.ComponentModel.ISupportInitialize)(this.accountBindingSource2)).BeginInit();
this.SuspendLayout();
//
// dataGridView1
//
this.dataGridView1.AllowUserToAddRows = false;
this.dataGridView1.AllowUserToDeleteRows = false;
this.dataGridView1.AutoGenerateColumns = false;
this.dataGridView1.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
this.dataGridView1.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] {
this.dataGridViewTextBoxColumn1,
this.dataGridViewTextBoxColumn2,
this.dataGridViewTextBoxColumn3});
this.dataGridView1.DataSource = this.accountBindingSource2;
this.dataGridView1.Location = new System.Drawing.Point(48, 69);
this.dataGridView1.Name = "dataGridView1";
this.dataGridView1.ReadOnly = true;
this.dataGridView1.Size = new System.Drawing.Size(346, 609);
this.dataGridView1.TabIndex = 0;
this.dataGridView1.CellContentClick += new System.Windows.Forms.DataGridViewCellEventHandler(this.dataGridView1_CellContentClick);
//
// dataGridViewTextBoxColumn1
//
this.dataGridViewTextBoxColumn1.DataPropertyName = "AccountID";
this.dataGridViewTextBoxColumn1.HeaderText = "AccountID";
this.dataGridViewTextBoxColumn1.Name = "dataGridViewTextBoxColumn1";
this.dataGridViewTextBoxColumn1.ReadOnly = true;
//
// dataGridViewTextBoxColumn2
//
this.dataGridViewTextBoxColumn2.DataPropertyName = "AccountType";
this.dataGridViewTextBoxColumn2.HeaderText = "AccountType";
this.dataGridViewTextBoxColumn2.Name = "dataGridViewTextBoxColumn2";
this.dataGridViewTextBoxColumn2.ReadOnly = true;
//
// dataGridViewTextBoxColumn3
//
this.dataGridViewTextBoxColumn3.DataPropertyName = "Balance";
this.dataGridViewTextBoxColumn3.HeaderText = "Balance";
this.dataGridViewTextBoxColumn3.Name = "dataGridViewTextBoxColumn3";
this.dataGridViewTextBoxColumn3.ReadOnly = true;
//
// accountBindingSource1
//
this.accountBindingSource1.DataMember = "Account";
this.accountBindingSource1.DataSource = this.iCBankDataSet1;
//
// iCBankDataSet1
//
this.iCBankDataSet1.DataSetName = "ICBankDataSet";
this.iCBankDataSet1.SchemaSerializationMode = System.Data.SchemaSerializationMode.IncludeSchema;
//
// accountBindingSource
//
this.accountBindingSource.DataMember = "Account";
//
// button1
//
this.button1.Location = new System.Drawing.Point(349, 621);
this.button1.Name = "button1";
this.button1.Size = new System.Drawing.Size(80, 39);
this.button1.TabIndex = 1;
this.button1.Text = "Close";
this.button1.UseVisualStyleBackColor = true;
this.button1.Click += new System.EventHandler(this.button1_Click);
//
// accountTableAdapter1
//
this.accountTableAdapter1.ClearBeforeFill = true;
//
// iCBankDataSet4
//
this.iCBankDataSet4.DataSetName = "ICBankDataSet4";
this.iCBankDataSet4.SchemaSerializationMode = System.Data.SchemaSerializationMode.IncludeSchema;
//
// accountBindingSource2
//
this.accountBindingSource2.DataMember = "Account";
this.accountBindingSource2.DataSource = this.iCBankDataSet4;
//
// accountTableAdapter2
//
this.accountTableAdapter2.ClearBeforeFill = true;
//
// AccountRecord
//
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.ClientSize = new System.Drawing.Size(434, 705);
this.Controls.Add(this.button1);
this.Controls.Add(this.dataGridView1);
this.Name = "AccountRecord";
this.Text = "AccountRecord";
this.Load += new System.EventHandler(this.AccountRecord_Load);
((System.ComponentModel.ISupportInitialize)(this.dataGridView1)).EndInit();
((System.ComponentModel.ISupportInitialize)(this.accountBindingSource1)).EndInit();
((System.ComponentModel.ISupportInitialize)(this.iCBankDataSet1)).EndInit();
((System.ComponentModel.ISupportInitialize)(this.accountBindingSource)).EndInit();
((System.ComponentModel.ISupportInitialize)(this.iCBankDataSet4)).EndInit();
((System.ComponentModel.ISupportInitialize)(this.accountBindingSource2)).EndInit();
this.ResumeLayout(false);
}
#endregion
private System.Windows.Forms.DataGridView dataGridView1;
private ICBankDataSet iCBankDataSet;
private System.Windows.Forms.BindingSource accountBindingSource;
private ICBankDataSetTableAdapters.AccountTableAdapter accountTableAdapter;
private System.Windows.Forms.DataGridViewTextBoxColumn accountIDDataGridViewTextBoxColumn;
private System.Windows.Forms.DataGridViewTextBoxColumn accountTypeDataGridViewTextBoxColumn;
private System.Windows.Forms.DataGridViewTextBoxColumn balanceDataGridViewTextBoxColumn;
private System.Windows.Forms.Button button1;
private ICBankDataSet iCBankDataSet1;
private System.Windows.Forms.BindingSource accountBindingSource1;
private ICBankDataSetTableAdapters.AccountTableAdapter accountTableAdapter1;
private System.Windows.Forms.DataGridViewTextBoxColumn dataGridViewTextBoxColumn1;
private System.Windows.Forms.DataGridViewTextBoxColumn dataGridViewTextBoxColumn2;
private System.Windows.Forms.DataGridViewTextBoxColumn dataGridViewTextBoxColumn3;
private ICBankDataSet4 iCBankDataSet4;
private System.Windows.Forms.BindingSource accountBindingSource2;
private ICBankDataSet4TableAdapters.AccountTableAdapter accountTableAdapter2;
}
}