I am trying to fill up the row source of a bounded combo box programmatically in Ms-Access. However, it does not show any of the numbers when I view the form.
Code:Private Sub Form_Open(Cancel As Integer) Me.cmbErrorType.RowSourceType = "Value List" Me.cmbErrorType.RowSource = "1;2;3;4;5;6" End Sub
When the form opens, I click on combo box, and it shows nothing in the drop down menu.
As far as I know, row source is used to build up the items in the combo box than why is this happening ?