I'm stuck on this problem for about 2 days now and i still can't find a way on how to bind my data column on the combobox. need help guys i really appriciate your help.
And this is the code i have made so far.
Private Sub Form_Load()
adodc1.ConnectionString = "Provider=Microsoft.Jet.OLEDB.4.0;Data Source=GradingSystem.mdb;Persist Security Info=False"
adodc1.RecordSource = "Select student_section from student_tbl"
Set cmbBoxSection.DataSource = adodc1
End Sub