Group: StrataFrame Developers
Posts: 3K,
Visits: 2.5K
|
No, the ComboBox is not sophisticated enough to store a tag like the ListView, so you can only store the information in either the display or the value column. If necessary, you can call your stored procedure on a business object on the form (not the one dynamically created for the ComboBox) and use the CopyDataFrom method to copy data into the dynamicly created business object. Then you would still have the business object on the form with all of the information necessary and you could Seek() to the record you need off the value in the ValueMember of the ComboBox. Other than that, you would need some sort of complex drop down list with a custom control (like you would find in a 3rd party control suite).
|