Your Privacy Matters: We use our own and third-party cookies to improve your experience on our website. By continuing to use the website we understand that you accept their use. Cookie Policy
705
Combobox Displaying Entire Dataset Instead of Just Display Member
posted

 

Am I doing something wrong, in a normal combobox this works fine.  However in the ultracombobox it displays the entire dataset reguardless of 

DataSet ds1 = SqlHelper.ExecuteDataset(SqlConnection.String, CommandType.Text, "Exec dbo.procSecurityListSelect 'code'");
ultraComboSecId.DataSource = ds1.Tables[0];
ultraComboSecId.DisplayMember = "code";
ultraComboSecId.Value = "sec_id";

Parents Reply Children