i have a UltraCombo with datasource (table) and valueMember is a column ,
its work and show all the table in the combo but when i select a row from the the Combo i dont get anything in UltraCombo.value or UltraCombo.text
Hello,
This should work just fine. I tried it and it always works fine for me so I attached my sample to this post for you. Please review it and feel free to let me know if I misunderstood you or if you have any other questions.
Hallo Boris,
your sample work but my not, i bind the datasource direct with a tableAdapter , its show all the table but when i select a row i get nothing
ultraCombo3.DataSource =this.tC_CommonDataSet.Users_Table;
ultraCombo3.ValueMember ="UserID"; // here every thing ist ok i get the table
private void button1_Click(object sender, EventArgs e)
{
console.WriteLine("Value: " + ultraCombo3.Value.ToString() + " & Text: "
+ ultraCombo3.Text); // but hier i get nothing
}
I am still not able to reproduce this. Could you please try to attach if possible a small sample project reproducing the above mentioned issue, I will be happy to take a look at it.
Solved ! thank you