I have combo control for displaying Personnel TablePersonnel Name
Position Title
I need to display the related position title name from the position table instead of position title in the Personnel Table. I am successfully doing this in a listview. However, I need to do this in a combo.
Thanks
Michael
Private
Sub VendorContacts_RowPopulating(ByVal e As MicroFour.StrataFrame.UI.Windows.Forms.RowPopulatingEventArgs) Handles VendorContacts.RowPopulatinge.Values(2).DisplayValue = BoPositionTitles1.GetRecordName(
CType(e.BusinessObject, ORION_BO.BOVendorContacts).PositionTitle)End Sub