📄 trainrecord.cs
字号:
using System;
using System.Drawing;
using System.Collections;
using System.ComponentModel;
using System.Windows.Forms;
using System.Data;
using System.Data.OleDb;
namespace PM
{
/// <summary>
/// TrainRecord 的摘要说明。
/// </summary>
public class TrainRecord : System.Windows.Forms.Form
{
private System.Windows.Forms.Label label1;
private System.Windows.Forms.ComboBox No_cb;
private System.Windows.Forms.Label label2;
private System.Windows.Forms.TextBox Name_txt;
private System.Windows.Forms.Label label3;
private System.Windows.Forms.TextBox tName_txt;
private System.Windows.Forms.Label label4;
private System.Windows.Forms.TextBox Context_txt;
private System.Windows.Forms.Label label5;
private System.Windows.Forms.TextBox Uint_txt;
private System.Windows.Forms.Label label6;
private System.Windows.Forms.TextBox Address_txt;
private System.Windows.Forms.Label label7;
private System.Windows.Forms.TextBox Exp_txt;
private System.Windows.Forms.Label label8;
private System.Windows.Forms.ComboBox Result_cb;
private System.Windows.Forms.Label label9;
private System.Windows.Forms.DateTimePicker Start_dtp;
private System.Windows.Forms.Label label10;
private System.Windows.Forms.DateTimePicker Stop_dtp;
private System.Windows.Forms.Label label11;
private System.Windows.Forms.TextBox Remarks_txt;
private System.Windows.Forms.Button button1;
private System.Windows.Forms.Button button2;
/// <summary>
/// 必需的设计器变量。
/// </summary>
private System.ComponentModel.Container components = null;
private DataTable dt = new DataTable();
private string ID = string.Empty;
public TrainRecord()
{
//
// Windows 窗体设计器支持所必需的
//
InitializeComponent();
//
// TODO: 在 InitializeComponent 调用后添加任何构造函数代码
//
}
/// <summary>
/// 清理所有正在使用的资源。
/// </summary>
protected override void Dispose( bool disposing )
{
if( disposing )
{
if(components != null)
{
components.Dispose();
}
}
base.Dispose( disposing );
}
#region Windows 窗体设计器生成的代码
/// <summary>
/// 设计器支持所需的方法 - 不要使用代码编辑器修改
/// 此方法的内容。
/// </summary>
private void InitializeComponent()
{
System.Resources.ResourceManager resources = new System.Resources.ResourceManager(typeof(TrainRecord));
this.label1 = new System.Windows.Forms.Label();
this.No_cb = new System.Windows.Forms.ComboBox();
this.label2 = new System.Windows.Forms.Label();
this.Name_txt = new System.Windows.Forms.TextBox();
this.label3 = new System.Windows.Forms.Label();
this.tName_txt = new System.Windows.Forms.TextBox();
this.label4 = new System.Windows.Forms.Label();
this.Context_txt = new System.Windows.Forms.TextBox();
this.label5 = new System.Windows.Forms.Label();
this.Uint_txt = new System.Windows.Forms.TextBox();
this.label6 = new System.Windows.Forms.Label();
this.Address_txt = new System.Windows.Forms.TextBox();
this.label7 = new System.Windows.Forms.Label();
this.Exp_txt = new System.Windows.Forms.TextBox();
this.label8 = new System.Windows.Forms.Label();
this.Result_cb = new System.Windows.Forms.ComboBox();
this.label9 = new System.Windows.Forms.Label();
this.Start_dtp = new System.Windows.Forms.DateTimePicker();
this.label10 = new System.Windows.Forms.Label();
this.Stop_dtp = new System.Windows.Forms.DateTimePicker();
this.label11 = new System.Windows.Forms.Label();
this.Remarks_txt = new System.Windows.Forms.TextBox();
this.button1 = new System.Windows.Forms.Button();
this.button2 = new System.Windows.Forms.Button();
this.SuspendLayout();
//
// label1
//
this.label1.Location = new System.Drawing.Point(24, 24);
this.label1.Name = "label1";
this.label1.Size = new System.Drawing.Size(56, 16);
this.label1.TabIndex = 0;
this.label1.Text = "员工编号";
//
// No_cb
//
this.No_cb.Location = new System.Drawing.Point(80, 16);
this.No_cb.Name = "No_cb";
this.No_cb.Size = new System.Drawing.Size(100, 20);
this.No_cb.TabIndex = 1;
this.No_cb.SelectedIndexChanged += new System.EventHandler(this.No_cb_SelectedIndexChanged);
//
// label2
//
this.label2.Location = new System.Drawing.Point(200, 24);
this.label2.Name = "label2";
this.label2.Size = new System.Drawing.Size(56, 16);
this.label2.TabIndex = 2;
this.label2.Text = "员工姓名";
//
// Name_txt
//
this.Name_txt.Enabled = false;
this.Name_txt.Location = new System.Drawing.Point(256, 16);
this.Name_txt.Name = "Name_txt";
this.Name_txt.TabIndex = 3;
this.Name_txt.Text = "";
//
// label3
//
this.label3.Location = new System.Drawing.Point(24, 64);
this.label3.Name = "label3";
this.label3.Size = new System.Drawing.Size(56, 16);
this.label3.TabIndex = 4;
this.label3.Text = "培训名称";
//
// tName_txt
//
this.tName_txt.Location = new System.Drawing.Point(80, 56);
this.tName_txt.Name = "tName_txt";
this.tName_txt.TabIndex = 5;
this.tName_txt.Text = "";
//
// label4
//
this.label4.Location = new System.Drawing.Point(200, 64);
this.label4.Name = "label4";
this.label4.Size = new System.Drawing.Size(56, 16);
this.label4.TabIndex = 6;
this.label4.Text = "培训内容";
//
// Context_txt
//
this.Context_txt.Location = new System.Drawing.Point(256, 56);
this.Context_txt.Name = "Context_txt";
this.Context_txt.TabIndex = 7;
this.Context_txt.Text = "";
//
// label5
//
this.label5.Location = new System.Drawing.Point(24, 104);
this.label5.Name = "label5";
this.label5.Size = new System.Drawing.Size(56, 16);
this.label5.TabIndex = 8;
this.label5.Text = "培训单位";
//
// Uint_txt
//
this.Uint_txt.Location = new System.Drawing.Point(80, 96);
this.Uint_txt.Name = "Uint_txt";
this.Uint_txt.TabIndex = 9;
this.Uint_txt.Text = "";
//
// label6
//
this.label6.Location = new System.Drawing.Point(200, 104);
this.label6.Name = "label6";
this.label6.Size = new System.Drawing.Size(56, 16);
this.label6.TabIndex = 10;
this.label6.Text = "培训地点";
//
// Address_txt
//
this.Address_txt.Location = new System.Drawing.Point(256, 96);
this.Address_txt.Name = "Address_txt";
this.Address_txt.TabIndex = 11;
this.Address_txt.Text = "";
//
// label7
//
this.label7.Location = new System.Drawing.Point(24, 144);
this.label7.Name = "label7";
this.label7.Size = new System.Drawing.Size(56, 16);
this.label7.TabIndex = 12;
this.label7.Text = "培训费用";
//
// Exp_txt
//
this.Exp_txt.Location = new System.Drawing.Point(80, 136);
this.Exp_txt.Name = "Exp_txt";
this.Exp_txt.TabIndex = 13;
this.Exp_txt.Text = "";
//
// label8
//
this.label8.Location = new System.Drawing.Point(200, 144);
this.label8.Name = "label8";
this.label8.Size = new System.Drawing.Size(56, 16);
this.label8.TabIndex = 14;
this.label8.Text = "培训结果";
//
// Result_cb
//
this.Result_cb.Location = new System.Drawing.Point(256, 136);
this.Result_cb.Name = "Result_cb";
this.Result_cb.Size = new System.Drawing.Size(100, 20);
this.Result_cb.TabIndex = 15;
//
// label9
//
this.label9.Location = new System.Drawing.Point(8, 184);
this.label9.Name = "label9";
this.label9.Size = new System.Drawing.Size(80, 16);
this.label9.TabIndex = 16;
this.label9.Text = "培训开始时间";
//
// Start_dtp
//
this.Start_dtp.Format = System.Windows.Forms.DateTimePickerFormat.Short;
this.Start_dtp.Location = new System.Drawing.Point(88, 176);
this.Start_dtp.Name = "Start_dtp";
this.Start_dtp.Size = new System.Drawing.Size(100, 21);
this.Start_dtp.TabIndex = 17;
//
// label10
//
this.label10.Location = new System.Drawing.Point(192, 184);
this.label10.Name = "label10";
this.label10.Size = new System.Drawing.Size(80, 16);
this.label10.TabIndex = 18;
this.label10.Text = "培训结束时间";
//
// Stop_dtp
//
this.Stop_dtp.Format = System.Windows.Forms.DateTimePickerFormat.Short;
this.Stop_dtp.Location = new System.Drawing.Point(272, 176);
this.Stop_dtp.Name = "Stop_dtp";
this.Stop_dtp.Size = new System.Drawing.Size(100, 21);
this.Stop_dtp.TabIndex = 19;
//
// label11
//
this.label11.Location = new System.Drawing.Point(24, 232);
this.label11.Name = "label11";
this.label11.Size = new System.Drawing.Size(32, 16);
this.label11.TabIndex = 20;
this.label11.Text = "备注";
//
// Remarks_txt
//
this.Remarks_txt.Location = new System.Drawing.Point(88, 216);
this.Remarks_txt.Multiline = true;
this.Remarks_txt.Name = "Remarks_txt";
this.Remarks_txt.ScrollBars = System.Windows.Forms.ScrollBars.Vertical;
this.Remarks_txt.Size = new System.Drawing.Size(280, 72);
this.Remarks_txt.TabIndex = 21;
this.Remarks_txt.Text = "";
//
// button1
//
this.button1.Location = new System.Drawing.Point(96, 304);
this.button1.Name = "button1";
this.button1.TabIndex = 22;
this.button1.Text = "确定";
this.button1.Click += new System.EventHandler(this.button1_Click);
//
// button2
//
this.button2.Location = new System.Drawing.Point(288, 304);
this.button2.Name = "button2";
this.button2.TabIndex = 22;
this.button2.Text = "取消";
this.button2.Click += new System.EventHandler(this.button2_Click);
//
// TrainRecord
//
this.AutoScaleBaseSize = new System.Drawing.Size(6, 14);
this.ClientSize = new System.Drawing.Size(400, 341);
this.Controls.Add(this.button1);
this.Controls.Add(this.Remarks_txt);
this.Controls.Add(this.label11);
this.Controls.Add(this.Stop_dtp);
this.Controls.Add(this.label10);
this.Controls.Add(this.Start_dtp);
this.Controls.Add(this.label9);
this.Controls.Add(this.Result_cb);
this.Controls.Add(this.label8);
this.Controls.Add(this.Exp_txt);
this.Controls.Add(this.label7);
this.Controls.Add(this.Address_txt);
this.Controls.Add(this.label6);
this.Controls.Add(this.Uint_txt);
this.Controls.Add(this.label5);
this.Controls.Add(this.Context_txt);
this.Controls.Add(this.label4);
this.Controls.Add(this.tName_txt);
this.Controls.Add(this.label3);
this.Controls.Add(this.Name_txt);
this.Controls.Add(this.label2);
this.Controls.Add(this.No_cb);
this.Controls.Add(this.label1);
this.Controls.Add(this.button2);
this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
this.MaximizeBox = false;
this.MinimizeBox = false;
this.Name = "TrainRecord";
this.Text = "培训记录添加";
this.Closing += new System.ComponentModel.CancelEventHandler(this.TrainRecord_Closing);
this.Load += new System.EventHandler(this.TrainRecord_Load);
this.ResumeLayout(false);
}
#endregion
#region 窗体出现相关数据绑定
private void TrainRecord_Load(object sender, System.EventArgs e)
{
if(TrainInfoForm.tID == "insert")
{
DBNo_cb();
}
if(TrainInfoForm.tID == "update")
{
string []ss = TrainInfoForm.tf.sb.ToString().Split('#');
this.No_cb.DropDownStyle = ComboBoxStyle.Simple;
this.No_cb.Enabled = false;
this.ID = ss[0];
this.No_cb.Text = ss[1];
this.Name_txt.Text = ss[2];
this.tName_txt.Text = ss[3];
this.Context_txt.Text = ss[4];
this.Uint_txt.Text = ss[5];
this.Address_txt.Text = ss[6];
this.Exp_txt.Text = ss[7];
this.Result_cb.Text = ss[8];
this.Start_dtp.Text = ss[9];
this.Stop_dtp.Text = ss[10];
this.Remarks_txt.Text = ss[11];
}
}
#endregion
private void DBNo_cb()
{
string s = "select * from EmployInfo order by eId asc";
Base b = new Base();
this.dt = b.ExeSQLdt(s);
for(int i = 0 ; i < this.dt.Rows.Count ; i ++)
{
this.No_cb.Items.Add(this.dt.Rows[i]["eId"].ToString());
}
}
private void TrainRecord_Closing(object sender, System.ComponentModel.CancelEventArgs e)
{
TrainInfoForm.tf.Enabled = true;
TrainInfoForm.tf.DBDataGrid();
}
private void button2_Click(object sender, System.EventArgs e)
{
TrainInfoForm.tf.Enabled = true;
TrainInfoForm.tf.DBDataGrid();
this.Close();
}
private void button1_Click(object sender, System.EventArgs e)
{
if(TrainInfoForm.tID == "insert")
{
string s = "insert into TrainInfo (trId,trName,trContext,trUnit,trAddr,trExp,trResulte,trFdate,trLdate,trRemarks) values (";
s += int.Parse(this.No_cb.Text.Trim()) + ",'" + this.tName_txt.Text + "','" + this.Context_txt.Text + "','" + this.Uint_txt.Text;
s += "','" + this.Address_txt.Text + "'," + Convert.ToDecimal(this.Exp_txt.Text.Trim()) + ",'" + this.Result_cb.Text + "','";
s += this.Start_dtp.Value.ToShortDateString() + "','" + this.Stop_dtp.Value.ToShortDateString() + "','" + this.Remarks_txt.Text + "')";
Base b = new Base();
b.ExeSQL(s);
MessageBox.Show("添加成功!");
}
if(TrainInfoForm.tID == "update")
{
string s = "update TrainInfo set trName='" + this.tName_txt.Text + "',trContext='" + this.Context_txt.Text + "',trUnit='";
s += this.Uint_txt.Text + "',trAddr='" + this.Address_txt.Text + "',trExp=" + Convert.ToDecimal(this.Exp_txt.Text.Trim());
s += ",trResulte='" + this.Result_cb.Text + "',trFdate='" + this.Start_dtp.Value.ToShortDateString() + "',trLdate='";
s += this.Stop_dtp.Value.ToShortDateString() + "',trRemarks='" + this.Remarks_txt.Text + "' where tttId=" + int.Parse(this.ID.Trim());
Base b = new Base();
b.ExeSQL(s);
MessageBox.Show("修改成功!");
}
}
private void No_cb_SelectedIndexChanged(object sender, System.EventArgs e)
{
for(int i = 0 ; i < this.dt.Rows.Count ; i ++)
{
if(this.No_cb.Text == this.dt.Rows[i]["eId"].ToString())
{
this.Name_txt.Text = this.dt.Rows[i]["eName"].ToString();
break;
}
}
}
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -