Hi,
Is there a reason why the following works for a System.Windows.Forms.TextBox but not for an UltraTextEditor?
Me.RateTextBox.DataBindings.Add(New System.Windows.Forms.Binding("Text", Me.bsController, "TotalCost.Rate", True))
bsController is a standard windows BindingSource. Note the nested property reference TotalCost.Rate - this is what causes problems for the ultratexteditor. TotalCost is a property of the entity to which bsController is bound. It contains a numeric property Rate, which is what we're trying to bind to.
Is there a way to get the same behaviour with the ultratexteditor?
Kev
The error I get is "Datamember TotalCost cannot be found on the Datasource", and occurs in the forms InitializeComponent
If the exact same code works for a TextBox, then it should work for the UltraTextEditor. Are you able to duplicate this in a small sample project? If so, either post it here or Submit an incident to Infragistics Developer Support so we can check it out and get it corrected.