DataBinging Question

  • Thread starter Thread starter Scott Meddows
  • Start date Start date
S

Scott Meddows

I have a combobox and a textbox on a form. I want to bind them in a "relational" way to a dataset.

The dataset I'm returning has two columns (Source [string], CollectionAmount [Decimal]). I can populate the combobox with the list
of Source, show to I get the textbox to change/update the datasource (Which I have in the combobox DataSource property) as I change
the combobox value and update the value in the textbox?

Thanks
 
Got it.

NewCollectionTextBox.DataBindings.Add(New Binding("Text", NewDynamicValuesBillingCompanyComboBox.DataSource, "CollectionPercent"))



Thanks anyway!
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top