Jump to content

Transfer data using radio button


Guest hata_ph

Recommended Posts

  • 1 month later...

try this one. Private Function rdoShipToBillingAddress_CheckedChanged(ByRef state As String, _ ByRef statevalue As String) As String If rdoShipToBillingAddress.Checked = True Then txtShipFname.Text = txtBillFname.Text txtShipLname.Text = txtBillLname.Text txtShipStreet.Text = txtBillStreet.Text txtShipCity.Text = txtBillCity.Text txtShipPhone.Text = txtBillPhone.Text txtShipMobile.Text = txtBillMobile.Text txtShipFax.Text = txtBillFax.Text state = ddlBillState.SelectedItem.Text statevalue = ddlBillState.SelectedValue txShipZipcode.Text = txtBillZipcode.Text ddlShipCountry.SelectedValue = ddlBillCountry.SelectedValue Else state = Me.ddlShipState.SelectedItem.Text statevalue = Me.ddlShipState.SelectedValue End If End Function

Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...