combobox don't update value

  • Thread starter Thread starter Jose
  • Start date Start date
J

Jose

I have a combobox with two possible values:
ONE
TWO

when i was pushed my save button save all values of my forms but this value
ONE or TWO don't

my code is:
ComboBox3.DataBindings.Add("SelectedValue", dset, "tabla.status")

Me.ComboBox3.Items.AddRange(New Object() {"ONE", "TWO"})


Please help me.
 
Looks fine to me but I think you have to add the range before you bind the
control, so re-arrange your code to see if it works.
 
Back
Top