Adding the values of 2 textboxes to display result in one of them
问题 On my form I have 2 textboxes called 'txtsurcharges.text' and 'txttotal.text' txttotal retrieves a value from mysql table, but what I want to happen is that this value becomes added to when I type in a value into txtsurcharges and display the result in txttotal. Here is my code for txtsurcharges: txtsurcharges.Text = String.Format("£{0}", txtsurcharges.Text) Here is my code for txttotal: Private Sub cbxPaymentID_SelectedIndexChanged(ByVal sender As System.Object, ByVal e As System.EventArgs)