This should be a fairly simple task, however I'm a bit of a dead end, I have a LookUpEdit control, I bind it to the data source and set displaymember and ValueMenber correctly.
This control is now populated correctly.
My problem is that normally I would pull out some data and then βsetβ it to an identifier, for example:
LookUpEdit.EditValue = [Some identifiers from my database]
However, in this particular case, I do not have access to the ID, but I have access to the displymember value (from the database), so how do I set the LookUpEdit control to only take into account the displaymember value?
source
share