hey all, i've built a ComboBox that gets manually items like this:
var newitem = new { fullname =c.Company+" "+ c.FirstName + " " + c.LastName,
custId = c.CustomerID };
c_dropCustomers.Items.Add(newitem);
later on on combo Selection event, i would want to get out the custId (The Value) only but i dont know how to reach it.
SOS :)