메일보내기 폼 추가 (작성중)

This commit is contained in:
Chikyun
2019-03-03 10:59:03 +09:00
parent 97407e07b4
commit d729efb45b
17 changed files with 1129 additions and 580 deletions

View File

@@ -49,6 +49,8 @@
this.label2 = new System.Windows.Forms.Label();
this.bn = new System.Windows.Forms.BindingNavigator(this.components);
this.bindingNavigatorAddNewItem = new System.Windows.Forms.ToolStripButton();
this.bs = new System.Windows.Forms.BindingSource(this.components);
this.dsPRJ = new FPJ0000.dsPRJ();
this.bindingNavigatorCountItem = new System.Windows.Forms.ToolStripLabel();
this.bindingNavigatorDeleteItem = new System.Windows.Forms.ToolStripButton();
this.bindingNavigatorMoveFirstItem = new System.Windows.Forms.ToolStripButton();
@@ -60,9 +62,9 @@
this.bindingNavigatorMoveLastItem = new System.Windows.Forms.ToolStripButton();
this.bindingNavigatorSeparator2 = new System.Windows.Forms.ToolStripSeparator();
this.progressBar1 = new System.Windows.Forms.ToolStripProgressBar();
this.bs = new System.Windows.Forms.BindingSource(this.components);
this.dsPRJ = new FPJ0000.dsPRJ();
this.ta = new FPJ0000.dsPRJTableAdapters.ProjectsTableAdapter();
this.nudSheet = new System.Windows.Forms.NumericUpDown();
this.label1 = new System.Windows.Forms.Label();
((System.ComponentModel.ISupportInitialize)(this.dataGridView1)).BeginInit();
this.panel1.SuspendLayout();
((System.ComponentModel.ISupportInitialize)(this.numericUpDown2)).BeginInit();
@@ -74,6 +76,7 @@
this.bn.SuspendLayout();
((System.ComponentModel.ISupportInitialize)(this.bs)).BeginInit();
((System.ComponentModel.ISupportInitialize)(this.dsPRJ)).BeginInit();
((System.ComponentModel.ISupportInitialize)(this.nudSheet)).BeginInit();
this.SuspendLayout();
//
// textBox1
@@ -128,6 +131,8 @@
//
// panel1
//
this.panel1.Controls.Add(this.nudSheet);
this.panel1.Controls.Add(this.label1);
this.panel1.Controls.Add(this.checkBox1);
this.panel1.Controls.Add(this.numericUpDown2);
this.panel1.Controls.Add(this.label6);
@@ -335,6 +340,16 @@
this.bindingNavigatorAddNewItem.Size = new System.Drawing.Size(23, 22);
this.bindingNavigatorAddNewItem.Text = "새로 추가";
//
// bs
//
this.bs.DataMember = "Projects";
this.bs.DataSource = this.dsPRJ;
//
// dsPRJ
//
this.dsPRJ.DataSetName = "dsPRJ";
this.dsPRJ.SchemaSerializationMode = System.Data.SchemaSerializationMode.IncludeSchema;
//
// bindingNavigatorCountItem
//
this.bindingNavigatorCountItem.Name = "bindingNavigatorCountItem";
@@ -417,20 +432,37 @@
this.progressBar1.Name = "progressBar1";
this.progressBar1.Size = new System.Drawing.Size(200, 22);
//
// bs
//
this.bs.DataMember = "Projects";
this.bs.DataSource = this.dsPRJ;
//
// dsPRJ
//
this.dsPRJ.DataSetName = "dsPRJ";
this.dsPRJ.SchemaSerializationMode = System.Data.SchemaSerializationMode.IncludeSchema;
//
// ta
//
this.ta.ClearBeforeFill = true;
//
// nudSheet
//
this.nudSheet.Location = new System.Drawing.Point(88, 37);
this.nudSheet.Maximum = new decimal(new int[] {
65535,
0,
0,
0});
this.nudSheet.Name = "nudSheet";
this.nudSheet.Size = new System.Drawing.Size(45, 21);
this.nudSheet.TabIndex = 21;
this.nudSheet.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
this.nudSheet.Value = new decimal(new int[] {
1,
0,
0,
0});
//
// label1
//
this.label1.AutoSize = true;
this.label1.Location = new System.Drawing.Point(46, 42);
this.label1.Name = "label1";
this.label1.Size = new System.Drawing.Size(36, 12);
this.label1.TabIndex = 20;
this.label1.Text = "sheet";
//
// Import
//
this.AutoScaleDimensions = new System.Drawing.SizeF(7F, 12F);
@@ -455,6 +487,7 @@
this.bn.PerformLayout();
((System.ComponentModel.ISupportInitialize)(this.bs)).EndInit();
((System.ComponentModel.ISupportInitialize)(this.dsPRJ)).EndInit();
((System.ComponentModel.ISupportInitialize)(this.nudSheet)).EndInit();
this.ResumeLayout(false);
this.PerformLayout();
@@ -495,5 +528,7 @@
private System.Windows.Forms.CheckBox checkBox1;
private dsPRJ dsPRJ;
private dsPRJTableAdapters.ProjectsTableAdapter ta;
private System.Windows.Forms.NumericUpDown nudSheet;
private System.Windows.Forms.Label label1;
}
}