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...

Parents
  • 469350
    Verified Answer
    Offline posted

    I'm not sure I understand your question, but I think maybe you want the UltraCombo to change the position of the CurrencyManager to navigate the data. If that's the case, then all you have to do is set SynchWithCurrencyManager to true on the UltraCombo. 

Reply Children
No Data