S
Stephen Robertson
using vb.net:
I have some comboboxes that are bound:
..DataSource = dstPerson.Tables("postype")
..DisplayMember = "type"
..ValueMember = "postype_id"
..DataBindings.Add("SelectedValue", dstPerson.Tables("person"),
"postype_id")
The combos DropDownStyles are set to dropdown so the user can blank
out a selection.
When a combo's text is cleared and a save button is clicked
(.AcceptChanges is called on the dataset), the text returns.
Although, if I load the data again, it is blank.
Any ideas on how to clear the text?
Stephen Robertson
I have some comboboxes that are bound:
..DataSource = dstPerson.Tables("postype")
..DisplayMember = "type"
..ValueMember = "postype_id"
..DataBindings.Add("SelectedValue", dstPerson.Tables("person"),
"postype_id")
The combos DropDownStyles are set to dropdown so the user can blank
out a selection.
When a combo's text is cleared and a save button is clicked
(.AcceptChanges is called on the dataset), the text returns.
Although, if I load the data again, it is blank.
Any ideas on how to clear the text?
Stephen Robertson