I am having an issue with a combo box on a vb page.
I have created a form in VS 2005 (vb) and have on it fields from a table called Cadets. One of the fields is state, which is an int and has a relationship with the state id in the states table.
The field on the page is a combo box which is populated by the states table and when it saves I want it to save the state id in the state column in that cadets table.
Now my issue is that when you load the form and add details when you get to the state combo box once you have selected the state out of the list (which is populating correctly) the form freezes and you can't tab off this field an go to any other fields, but there is no error in VS.
The combo box datasource is a bindingsource to the TblStatesBindingSource with Display member as State, Value Member as State ID and Selected Value as State ID. The DataBindings are to the states table bindging source with Selected item: TblStatesBindingSource - StateID, SelectedValue: TblStatesBindingSource - StateID and Text: TblStatesBindingSource - State
I have created a form in VS 2005 (vb) and have on it fields from a table called Cadets. One of the fields is state, which is an int and has a relationship with the state id in the states table.
The field on the page is a combo box which is populated by the states table and when it saves I want it to save the state id in the state column in that cadets table.
Now my issue is that when you load the form and add details when you get to the state combo box once you have selected the state out of the list (which is populating correctly) the form freezes and you can't tab off this field an go to any other fields, but there is no error in VS.
The combo box datasource is a bindingsource to the TblStatesBindingSource with Display member as State, Value Member as State ID and Selected Value as State ID. The DataBindings are to the states table bindging source with Selected item: TblStatesBindingSource - StateID, SelectedValue: TblStatesBindingSource - StateID and Text: TblStatesBindingSource - State