I have a textbox databound to my binding source. It changes its value whenever my combo box changes its value, they're both bound to the same source. On one option on my combo box, i'd like to be able to programmatically change the value of my textbox, this is what I have right now but it does nothing but retrieve the value from its datasource.
If cboDesc.Text = "Sales Tax" Then
txtFee.Text = dblTax
End If
cboDesc is my combo box
"Sales Tax" is the string in which when selected I want to change the txtFee.text's value
txtFee is the text box databound
thanks for the help!
If cboDesc.Text = "Sales Tax" Then
txtFee.Text = dblTax
End If
cboDesc is my combo box
"Sales Tax" is the string in which when selected I want to change the txtFee.text's value
txtFee is the text box databound
thanks for the help!