Hello,
I load data from a database into a dataGridView. How can I set one of the columns to combobox that loads data from a stored procedure?
Here's my code for loading data:
using (conn = new SqlConnection(connectionString))
{
SqlCommand cmd = new SqlCommand("SELECT_TASKS", conn);
cmd.CommandType = CommandType.StoredProcedure;
cmd.Parameters.Add(new SqlParameter("@UserID", System.Environment.UserName));
SqlDataAdapter da = new SqlDataAdapter(cmd);
DataTable dt = new DataTable();
da.Fill(dt);
tasksGridView.DataSource = dt;
}
conn.Close();
Thank you in advance.
DealyPosted Apr 17, 2014, 12:06 PM
Munesh SharmaPosted Apr 17, 2014, 7:44 AM
http://www.mindstick.com/Articles/6ad5e5a1-7802-403c-a85f-99296208b9ac/?ComboBox%20in%20DataGridView%20in%20C
DealyPosted Apr 17, 2014, 5:52 AM
Anurag SarkarPosted Apr 17, 2014, 5:13 AM