gpt4 book ai didi

c# - 在运行时创建多个文本框并从数据库中分配值文本框..我想显示数据库中的所有数据

转载 作者:行者123 更新时间:2023-11-29 17:29:07 25 4
gpt4 key购买 nike

如何在运行时创建多个文本框并从数据库为文本框分配值..我想显示数据库中的所有数据。例如,如果我存储了 4 行,那么程序应该立即在动态创建的文本框中显示所有 4 行。 C# 窗口窗体给我代码或示例谢谢..

int txtno = int.Parse(textBox1.Text);
try
{
string MyConnection2 = "datasource = 127.0.0.1;port=3306;username = root;password =; database = test123; SslMode=None ;Convert Zero Datetime=True";
//Display query
string Query = "select * from test123.task;";
MySqlConnection MyConn2 = new MySqlConnection(MyConnection2);
MySqlCommand MyCommand2 = new MySqlCommand(Query, MyConn2);
// MyConn2.Open();
//For offline connection we weill use MySqlDataAdapter class.
MySqlDataAdapter MyAdapter = new MySqlDataAdapter();
MyAdapter.SelectCommand = MyCommand2;
DataSet ds = new DataSet();
DataTable dTable = new DataTable();
MyAdapter.Fill(dTable);
MyAdapter.Fill(ds);
// MySqlDataReader MyReader2;
foreach (DataRow de in DataSet.TABLe.Row)
MyConn2.Open();

MyReader2 = MyCommand2.ExecuteReader();
if (MyReader2.Read())
{
string val = MyReader2[0].ToString();
if (val == "")
{
//textBox1.Text = ()
}
else
{
txtno = Convert.ToInt32(MyReader2[0].ToString());
txtno = txtno + 1;
TextBox txt = new TextBox();
// txtno.Text = (i + 1).ToString()
panel2.Controls.Add(txt);
panel2.Show();
textBox1.Text = txtno.ToString();
}
}
//for (int i = 0; i < txtno; i++)
//{
// Label lbl = new Label();

// lbl.Text = (MyReader2["task_comment"].ToString());
// // lbl = "Label" + i.ToString();

// panel2.Controls.Add(lbl);
//}



MyConn2.Close();//Connection closed here
}

catch (Exception ex)

{

}

最佳答案

有很多更好的方法可以编写您想要的内容,但我提供了一种简单的方法来通过指定文本框的 TopLeft 来修复您的代码:

MySqlConnection con = new SqlConnection( "datasource = 127.0.0.1;port=3306;username = root;password =; database = test123; SslMode=None ;Convert Zero Datetime=True");
MySqlCommand cmd = new SqlCommand( "select * from test123.task;", con);
con.open();
MySqlDataReader dr= cmd.ExecuteReader();

int top=100;
While(dr.read())
{
Textbox textBox= new TextBox();
panel2.Controls.Add(textBox);
textBox.Text=dr[0 /* or instead of 0 use your fieldName */].ToString();
textBox.Left=150;
textBox.Top=top;
top+=100;
}

con.close()

关于c# - 在运行时创建多个文本框并从数据库中分配值文本框..我想显示数据库中的所有数据,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/50785842/

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