I have several comboBox's on a form. They are all loaded from an Access Database. One table with several columns. Each box loads one column. They all load fine but when I selected an item from one, they all change to that row of the table. If I pick the 4th one down, they all show the 4th one down. Below is my code. I'm sure I'm missing something easy. I'm rather new at all this. Thanks
codesDataAdapter.Fill(DataSet2)
With processComboBox
.Items.Clear()
.DataSource = DataSet2.Tables("codes")
.DisplayMember = ("General")
End With
With maintenanceComboBox
.Items.Clear()
.DataSource = DataSet2.Tables("codes")
.DisplayMember = "Process"
End With
Codes is my Table within the database and "Process" and "General" are fields.
codesDataAdapter.Fill(DataSet2)
With processComboBox
.Items.Clear()
.DataSource = DataSet2.Tables("codes")
.DisplayMember = ("General")
End With
With maintenanceComboBox
.Items.Clear()
.DataSource = DataSet2.Tables("codes")
.DisplayMember = "Process"
End With
Codes is my Table within the database and "Process" and "General" are fields.