Combobox Problem

prav_roy

Well-known member
Joined
Sep 10, 2005
Messages
70
Location
Mumbai
Programming Experience
1-3
hi have one problem
im using following format for my combobox

cmbMailId.DataSource = dSS.Tables(0)
cmbMailId.DisplayMember = "responsemailid"
cmbMailId.ValueMember = "referenceno"

but the problem is that my combobox is not responding to selectedindexchanged event,
wht i want to do is, im displyaing mail id's in the combobox, when i change an item from the combobox in back end i want to get the referenceno
how to do it
Please help
Thank you
 
i've had problems using the SelectValue property for both the Combobox and Listbox when having it display one field but hold the record ID in the SelectedValue field

cant remember how to get it to work right though, i think it's been fixed in the 2005 release
 
Back
Top