gpt4 book ai didi

c# - 从 SQL 加载数据以组合并保存所选值

转载 作者:行者123 更新时间:2023-11-30 16:13:47 25 4
gpt4 key购买 nike

我尝试将值从 sql 数据库加载到组合框,单击按钮后我想将组合框的选定值保存到变量。

这是我的代码:

SqlConnection con = new SqlConnection(connectionstring);   
con.Open();
string strCmd = "select id,Prijmeni from Osoba";
SqlCommand cmd3 = new SqlCommand(strCmd, con);
SqlDataAdapter da = new SqlDataAdapter(strCmd, con);
DataTable dt = new DataTable();
da.Fill(dt);
comboBox1.DataSource = dt;
comboBox1.DisplayMember = "Prijmeni";
comboBox1.ValueMember = "id";
comboBox1.Enabled = true;
cmd3.ExecuteNonQuery();
con.Close();

private void Ulozit_Click(object sender, EventArgs e)
{
//How i could save selected value of combobox to variable Value1 ???
}

请问您有什么想法吗?

最佳答案

您可以通过以下方式保存所选值:

var Value1 = comboBox1.SelectedValue;

关于c# - 从 SQL 加载数据以组合并保存所选值,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/21277679/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com