Afternoon,
if i assign ultracomboeditor with the following:
ultracomboeditor.displaymember = blah blah
ultracomboeditor.valuemember = blah blah
ultracomboeditor.datasource = bindingsource1
i get the following error for the three above:
'DisplayMember' is not a member of 'Infragistics.Win.UltraDataGridView.UltraComboEditorColumn'
'ValueMember' is not a member of 'Infragistics.Win.UltraDataGridView.UltraComboEditorColumn'
'Datasource' is not a member of 'Infragistics.Win.UltraDataGridView.UltraComboEditorColumn'
Why do i get these errors?
ta
Hi,
I'm a bit confused. What exactly is UltraComboEditor in the code you have here?
You are posting in the WinCombo forum, so that would seem to indicate that maybe you are using UltraCombo. But UltraCombo is not the same as UltraComboEditor.
The error you are getting is referencing 'Infragistics.Win.UltraDataGridView.UltraComboEditorColumn'. This is either UltraCombo nor UltraComboEditor, but is a derived column type which can be used with the Microsoft DataGridView. It's not a standalone component.
So I cannot guess why these errors are occurring without a lot more information about what class you are using here.
ive got a datagridview with a UltraComboEditorColumn.
not sure if ive posted it in the right forum but basically i want to assign a displaymember and valuemember for this combobox in my datagridview but im getting the errors mentioned earlier.
basically where can i set the properties for displaymember and valuemember? i tried coding it but keeping getting the errors