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
95
binding controls to an ultracombo
posted

 hi, i have the following code:

ultraGrid1.DataSource = _dataSet.Tables["Table"];

ultraTextEditor1.DataBindings.Add("Text", _dataSet.Tables["Table"], "Value");

 

if i would like to use an UltraCombo to browse the dataTable

if i use the following code, the ultraTextEditor1.Text doesn't change

ultraCombo1.DataSource = _dataSet.Tables["Table"];

 

i would like to know if this is possible...