I’m using VS 2008
I have a bound ComboBox on a form.
It is bound to a tblInvoiceHeade r. VendorID, and it shows the VendorName. When clicked it displays a list of Vendors. When one is selected it is suppose to put the VendorID into this field.
When the form opens it displays the correct vendor (the one whose VendorID = the VendorID in this textbox), but when I change the selection it remains stuck in this ComboBox, I can’t do anything else on the form, nothing responds other than the combobox but no matter what I do in the combobox I can’t exist it.
The Combo is setup as such:
Data Source – a binding source that is connected to the VendorDS
Display Member - VendorName
Value Member – VendorID
All these are from the VendorDS.tblVen dor
Selected Value – InvoiceHeaderBi ndingSource.Ven dorID ( I have tried changing this the dataset.table but it makes no difference to this behavior)
I have a bound ComboBox on a form.
It is bound to a tblInvoiceHeade r. VendorID, and it shows the VendorName. When clicked it displays a list of Vendors. When one is selected it is suppose to put the VendorID into this field.
When the form opens it displays the correct vendor (the one whose VendorID = the VendorID in this textbox), but when I change the selection it remains stuck in this ComboBox, I can’t do anything else on the form, nothing responds other than the combobox but no matter what I do in the combobox I can’t exist it.
The Combo is setup as such:
Data Source – a binding source that is connected to the VendorDS
Display Member - VendorName
Value Member – VendorID
All these are from the VendorDS.tblVen dor
Selected Value – InvoiceHeaderBi ndingSource.Ven dorID ( I have tried changing this the dataset.table but it makes no difference to this behavior)
Comment