test code reminder

  1. W

    changing tetxtboxes to doubles and ints to add up

    Private Sub btnCalc_Click(sender As System.Object, e As System.EventArgs) Handles btnCalc.Click CalculateCost() End Sub Private Sub CalculateCost() txtbCat1Cost.Text = txtbCat1Items.Text * txtbCat1Price.Text txtbCat2Cost.Text = txtbCat2Items.Text * txtbCat2Price.Text...
Back
Top