C#中的datagridview中的combox下拉列表问题!

我写的是一个插入程序,用datagridvie作为录入数据的容器,在录入数据之前要查询出改员工的信息(就是在员工编号这一列中输入编号,再按tab键查询出对应的该员工编号,... 我写的是一个插入程序,用datagridvie作为录入数据的容器,在录入数据之前要查询出改员工的信息(就是在员工编号这一列中输入编号,再

按tab键查询出对应的该员工编号,姓名,和所属部门)后面几列是要录入的,之前这查询的三列都是单元格这个我会弄,但是我这的所属部门

这列现在要改为datagridview里的combox了,就是在加载的时候,combox里面有全部的部门,
在查询的时候呢,要在combox里面查询出该员工对应的所属部门,而其还要也能显示别的部门而其这列也能更改为其他部门,就是这样我不会

弄了,麻烦大家帮帮我,很急,在线等,谢谢好心人的帮助!!!!

原在单元格中的查询前三列的代码

//根据员工id查询对应的员工信息
private void dgvshow_CellLeave(object sender, DataGridViewCellEventArgs e)
{
if (e.ColumnIndex == 0)
{

DataGridView dgv = (DataGridView)sender; //取得被表示的控件
dgv.CurrentRow.Cells[1].Value = WorktimeXManager.fanhuistr("select emp_name from [&sx_employee] where emp_id

= " + dgv.CurrentCell.EditedFormattedValue.ToString());
dgv.Columns[1].ReadOnly = true;
dgv.CurrentRow.Cells[2].Value = WorktimeXManager.fanhuistr("select t0.depart_name from [&sx_department] as t0

inner join [&sx_employee] as t1 on t1.emp_department=t0.depart_id where t1.emp_id ="+

dgv.CurrentCell.EditedFormattedValue.ToString());
dgv.Columns[2].ReadOnly = false;
}
}
展开
 我来答
120174200
2010-03-13
知道答主
回答量:1
采纳率:0%
帮助的人:0
展开全部
改下
private void stubasic_Load(object sender, EventArgs e)
{

const string constr = "Data Source=PC-200912041139;Initial Catalog=Studentinformation;Integrated Security=True";
using (SqlConnection conn = new SqlConnection(constr))
{
try
{

conn.Open();
SqlDataAdapter dagrade = new SqlDataAdapter("Select 成绩信息.学号,基本信息.姓名,基本信息.年龄,基本信息.性别,基本信息.院系班级,课程信息.课程名,成绩信息.成绩 ,课程信息.授课老师 from 成绩信息,基本信息,课程信息 where 成绩信息.学号=基本信息.学号 and 成绩信息.课程号=课程信息.课程号", conn);
dagrade.Fill(ds, "成绩信息");
SqlDataAdapter dabasic = new SqlDataAdapter("Select * from 基本信息", conn);
dabasic.Fill(ds, "基本信息");
SqlDataAdapter dacourse = new SqlDataAdapter("Select * from 课程信息", conn);
dacourse.Fill(ds, "课程信息");
dataGridView1.AutoGenerateColumns = true;
bindingSource1.DataSource = ds.Tables[1].DefaultView;
dt = ds.Tables[1];
for (int j = 0; j <= dt.Columns.Count - 1; j++)
{
comboBox1.Items.Add(dt.Columns[j].ColumnName);
comboBox2.Items.Add(dt.Columns[j].ColumnName);
}
comboBox1.SelectedIndex = 0;
comboBox2.SelectedIndex = 0;
}
finally
{
if (conn.State == ConnectionState.Open)
{
conn.Close();
}
}
}
}
private void comboitem(int i)
{
bindingSource1.DataSource = ds.Tables[i].DefaultView;
comboBox1.Items.Clear();
comboBox2.Items.Clear();
dt = ds.Tables[i];
for (int j = 0; j <= dt.Columns.Count - 1; j++)
{
comboBox2.Items.Add(dt.Columns[j].ColumnName);
comboBox1.Items.Add(dt.Columns[j].ColumnName);
}
comboBox1.SelectedIndex = 0;
comboBox2.SelectedIndex = 0;

}

private void radioButton1_CheckedChanged(object sender, EventArgs e)
{

if (radioButton1.Checked == true)
{

comboitem(1);
}
}

private void radioButton3_CheckedChanged(object sender, EventArgs e)
{
if (radioButton3.Checked == true)
{

comboitem(2);
}
}

private void radioButton2_CheckedChanged(object sender, EventArgs e)
{
if (radioButton2.Checked == true)
{

comboitem(0);
}
}
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询
?>

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式