ohohling 0 Newbie Poster

Name: |textbox| ' data bind from table 1

Type: |ComboBox| 'datasource is from table 2 but databind is from
table 1

above is 1 part from my form. i doing add, update, and delete data to the form. after i add data i will close the form, if user going to update the data they have to key in ID then name and type will get data by bind menthod...

the problem i fetch now is... i get the data source from table 2 for user to update... but the orginal data add by user cannot show correctly in the form...it will always display the 1st item in the combobox that from datasource...

example...
type datasource contain...
1. aaa
2. bbb
3. ccc
4.....
....

but that say
ID: 001
name : ABC
type : ccc

when i find data to update by key in 001
inside the form
name textbox is ABC and
tyep ComboBox should be ccc...

but i always get aaa....means the 1st item from datasource...
how i solve this...

thanks