Develop and Download Open Source Software

Browse Subversion Repository

Contents of /trunk/FeliCa2Money.net/CsvDialog.Designer.cs

Parent Directory Parent Directory | Revision Log Revision Log


Revision 127 - (show annotations) (download)
Sat Mar 15 15:55:53 2008 UTC (16 years, 2 months ago) by tmurakam
File size: 6426 byte(s)
add JAL card, 
Fix suica handling.
1 namespace FeliCa2Money
2 {
3 partial class CsvDialog
4 {
5 /// <summary>
6 /// Required designer variable.
7 /// </summary>
8 private System.ComponentModel.IContainer components = null;
9
10 /// <summary>
11 /// Clean up any resources being used.
12 /// </summary>
13 /// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
14 protected override void Dispose(bool disposing)
15 {
16 if (disposing && (components != null))
17 {
18 components.Dispose();
19 }
20 base.Dispose(disposing);
21 }
22
23 #region Windows Form Designer generated code
24
25 /// <summary>
26 /// Required method for Designer support - do not modify
27 /// the contents of this method with the code editor.
28 /// </summary>
29 private void InitializeComponent()
30 {
31 this.listBox = new System.Windows.Forms.ListBox();
32 this.label1 = new System.Windows.Forms.Label();
33 this.label2 = new System.Windows.Forms.Label();
34 this.label3 = new System.Windows.Forms.Label();
35 this.textBranchId = new System.Windows.Forms.TextBox();
36 this.textAccountId = new System.Windows.Forms.TextBox();
37 this.button1 = new System.Windows.Forms.Button();
38 this.button2 = new System.Windows.Forms.Button();
39 this.SuspendLayout();
40 //
41 // listBox
42 //
43 this.listBox.FormattingEnabled = true;
44 this.listBox.ItemHeight = 12;
45 this.listBox.Location = new System.Drawing.Point(14, 24);
46 this.listBox.Name = "listBox";
47 this.listBox.Size = new System.Drawing.Size(348, 244);
48 this.listBox.TabIndex = 0;
49 this.listBox.SelectedIndexChanged += new System.EventHandler(this.listBox_SelectedIndexChanged);
50 //
51 // label1
52 //
53 this.label1.AutoSize = true;
54 this.label1.Location = new System.Drawing.Point(12, 9);
55 this.label1.Name = "label1";
56 this.label1.Size = new System.Drawing.Size(29, 12);
57 this.label1.TabIndex = 1;
58 this.label1.Text = "種別";
59 //
60 // label2
61 //
62 this.label2.AutoSize = true;
63 this.label2.Location = new System.Drawing.Point(12, 285);
64 this.label2.Name = "label2";
65 this.label2.Size = new System.Drawing.Size(53, 12);
66 this.label2.TabIndex = 2;
67 this.label2.Text = "支店番号";
68 //
69 // label3
70 //
71 this.label3.AutoSize = true;
72 this.label3.Location = new System.Drawing.Point(12, 316);
73 this.label3.Name = "label3";
74 this.label3.Size = new System.Drawing.Size(53, 12);
75 this.label3.TabIndex = 3;
76 this.label3.Text = "口座番号";
77 //
78 // textBranchId
79 //
80 this.textBranchId.Location = new System.Drawing.Point(71, 282);
81 this.textBranchId.Name = "textBranchId";
82 this.textBranchId.Size = new System.Drawing.Size(139, 19);
83 this.textBranchId.TabIndex = 4;
84 this.textBranchId.Leave += new System.EventHandler(this.textBranchId_Leave);
85 //
86 // textAccountId
87 //
88 this.textAccountId.Location = new System.Drawing.Point(71, 313);
89 this.textAccountId.Name = "textAccountId";
90 this.textAccountId.Size = new System.Drawing.Size(139, 19);
91 this.textAccountId.TabIndex = 5;
92 this.textAccountId.Leave += new System.EventHandler(this.textAccountId_Leave);
93 //
94 // button1
95 //
96 this.button1.DialogResult = System.Windows.Forms.DialogResult.OK;
97 this.button1.Location = new System.Drawing.Point(98, 356);
98 this.button1.Name = "button1";
99 this.button1.Size = new System.Drawing.Size(75, 23);
100 this.button1.TabIndex = 6;
101 this.button1.Text = "OK";
102 this.button1.UseVisualStyleBackColor = true;
103 //
104 // button2
105 //
106 this.button2.DialogResult = System.Windows.Forms.DialogResult.Cancel;
107 this.button2.Location = new System.Drawing.Point(191, 356);
108 this.button2.Name = "button2";
109 this.button2.Size = new System.Drawing.Size(75, 23);
110 this.button2.TabIndex = 7;
111 this.button2.Text = "キャンセル";
112 this.button2.UseVisualStyleBackColor = true;
113 //
114 // CsvDialog
115 //
116 this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
117 this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
118 this.ClientSize = new System.Drawing.Size(374, 391);
119 this.ControlBox = false;
120 this.Controls.Add(this.button2);
121 this.Controls.Add(this.button1);
122 this.Controls.Add(this.textAccountId);
123 this.Controls.Add(this.textBranchId);
124 this.Controls.Add(this.label3);
125 this.Controls.Add(this.label2);
126 this.Controls.Add(this.label1);
127 this.Controls.Add(this.listBox);
128 this.MaximizeBox = false;
129 this.MinimizeBox = false;
130 this.Name = "CsvDialog";
131 this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
132 this.Text = "CSV読み込み設定";
133 this.FormClosing += new System.Windows.Forms.FormClosingEventHandler(this.CsvDialog_FormClosing);
134 this.ResumeLayout(false);
135 this.PerformLayout();
136
137 }
138
139 #endregion
140
141 private System.Windows.Forms.ListBox listBox;
142 private System.Windows.Forms.Label label1;
143 private System.Windows.Forms.Label label2;
144 private System.Windows.Forms.Label label3;
145 private System.Windows.Forms.TextBox textBranchId;
146 private System.Windows.Forms.TextBox textAccountId;
147 private System.Windows.Forms.Button button1;
148 private System.Windows.Forms.Button button2;
149 }
150 }

Back to OSDN">Back to OSDN
ViewVC Help
Powered by ViewVC 1.1.26