📄 selectworker.cs
字号:
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Text;
using System.Windows.Forms;
using System.Data.SqlClient;
namespace 人事管理
{
public partial class selectworker : Form
{
data da = new data();
public static bool bj;
public selectworker()
{
InitializeComponent();
}
private void selectworker_Load(object sender, EventArgs e)
{
SqlCommand sqlcomm1 = new SqlCommand("select branchnumID,branchnumname from branchnum", da.link());
SqlDataAdapter sqlda = new SqlDataAdapter(sqlcomm1);
DataSet ds = new DataSet();
sqlda.Fill(ds);
branchbox.DataSource = ds.Tables[0].DefaultView;
branchbox.DisplayMember = "branchnumname";
}
//查询
private void selectbtn_Click(object sender, EventArgs e)
{
if (workernametxt.Text == "" && emailtxt.Text == "" && branchbox.Text == "")
{
MessageBox.Show("用户必须输入查询条件", "提示");
}
else
{
Convert.ToInt32(branchbox.SelectedIndex + 1);
selectworker.bj = true;
this.Close();
}
}
private void outbtn_Click(object sender, EventArgs e)
{
DialogResult sss = MessageBox.Show("请确认要退出!", "请确认要退出!", MessageBoxButtons.YesNo);
if (sss == DialogResult.Yes)
{
this.Close();
}
}
private void label3_Click(object sender, EventArgs e)
{
}
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -