Hi..
my query is..
i have combobox in that i have to load the particular column from db..
for that i used
...
......
da.fill(ds,"user")
dt=ds.tables("user")
for i= o to dt.rows.count -1
combobox1.items.add(dt.rows.count(i).item(0))
next
my doubt is...
i have lots of columns in my table(db)...
if i load combobox one value in form then the respective(other) fields from the database (it should take) and display in the form..
for ex If E_Id column is loaded in combobox (how to load pls) then the respective Employee detils should be displayed from the db and display in forms
pls reply ASAP