Question: Problems: Correcting Code Errors The following samples of code contain errors. Rewrite the incorrect statements to correct all errors. Private Sub btnCalc _ Click (

Problems: Correcting Code Errors
The following samples of code contain errors. Rewrite the incorrect statements to correct all errors.
Private Sub btnCalc_Click(ByVal sender As Object, ByVal e As System. EventArgs) Handles btnCalc.Click
calculates and displays the total amount owed for purchasing hats
1 user enters number of hats and price per hat
' all hats are on sale for 25% off the price
Dim dblNumHats As Integer
Dim decHatPrice As Decimal
Dim decDiscount As Double
Dim decTotal As Decimal
' assign number of hats and price to variables
Integer. TryPurse (txtNumHats.Text, intNumHats)
Decimal. TryParse(txtHatPrice, decHatPrice)
calculate and display the total amount owed
decDiscount = decHatPrice ** dblRATE
decTotal =(intNumHats + decHatPrice)- decDiscount
Total.Text = decTotal.ToString (C2)
End Sub
Problems: Correcting Code Errors The following

Step by Step Solution

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Programming Questions!