Need help in populating combobox with dropdownlist style Programming Software Development by Jake.20 ….ConnectionString = "Provider=Microsoft.Jet.OLEDB.4.0;Data Source=GradingSystem.mdb;Persist Security Info=False" adodc1.RecordSource = "Select… Can't edit the searched data in the datagrid Programming Software Development by Jake.20 … strConn = "Provider=Microsoft.Jet.OLEDB.4.0;Data Source=GradingSystem.mdb;Persist Security Info=False" Set rs = New ADODB… Re: Need help in populating combobox with dropdownlist style Programming Software Development by AndreRet Do you HAVE to use the datacontrol? If not, there is a much easier way by just looping through the records returned... Re: Need help in populating combobox with dropdownlist style Programming Software Development by Jake.20 Now i'm done in populating the combobox but the problem is the item is duplicating like for example i have two student with the same section Student 1 - Section-1 Student 2 - Section-1 The item inside the combobax has two Section-1 instead of one section-1 only. Any tip sir Re: Need help in populating combobox with dropdownlist style Programming Software Development by rishif2 use of `distinct` will result in what you want(it will return only dictinct values i.e different values only) `"Select distinct student_section from student_tbl"` hope this helps you . . . Re: Need help in populating combobox with dropdownlist style Programming Software Development by Jake.20 Thanks rishif! Re: Can't edit the searched data in the datagrid Programming Software Development by Jx_Man Confused here. I can't understand what you want exactly. You can't edit data in datagrid or you can't show data to the textboxes? Re: Can't edit the searched data in the datagrid Programming Software Development by Jake.20 Sorry. I can't show the data to the textboxes. Re: Can't edit the searched data in the datagrid Programming Software Development by Jake.20 Guys i really need help on this problem :/. Re: Can't edit the searched data in the datagrid Programming Software Development by Jx_Man Change : txtStudentId.DataField = "student_Id" txtStudentFirstName.DataField = "student_firstName" .... To : txtStudentId.DataField = rs!student_Id txtStudentFirstName.DataField = rs!student_firstName .... Or : txtStudentId.DataField = rs.Fields("student_Id").Value … Re: Can't edit the searched data in the datagrid Programming Software Development by Jake.20 Still not working :/ Re: Can't edit the searched data in the datagrid Programming Software Development by Jx_Man > Still not working :/ Sorry..my bad. Wrong in my sample code. Change : txtStudentId.DataField = "student_Id" txtStudentFirstName.DataField = "student_firstName" .... To : txtStudentId.Text = rs!student_Id txtStudentFirstName.Text = rs!student_firstName .... Or : txtStudentId.Text = rs.…