Using VB.NET
I want to add a data's in the Datagridviewcombobox column
Code.
cmd = New SqlCommand("SELECT Sched_Name from tb_Sched_Master", con)
ada = New SqlDataAdapter(cmd)
ada.Fill(ds1)
x.HeaderText = "Select Employee"
DataGrid4.Columns.Add(x)
x.Items.Add(ds1.Tables(0))
But I cannot get the data's, what wrong in my code.
Need vb.net code Help