Duplicate Question
The question on this page has been marked as a duplicate question.
Original Question
debugging exercise: Private Sub btnItemNumber_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles btnItem...Asked by Kevin
debugging exercise:
Private Sub btnItemNumber_Click(ByVal sender As System.Object, ByVal e As
System.EventArgs) Handles btnItemNumber.Click
Dim decCost As Decimal
Dim intCount As Decimal
decCost = Convert.ToDecimal(txtCost.Text)
Inventory(decCost, intCount)
End Sub
Private Sub Inventory(ByVal cost, ByVal count)
count +=3
cost *=1.3
End Sub
Private Sub btnItemNumber_Click(ByVal sender As System.Object, ByVal e As
System.EventArgs) Handles btnItemNumber.Click
Dim decCost As Decimal
Dim intCount As Decimal
decCost = Convert.ToDecimal(txtCost.Text)
Inventory(decCost, intCount)
End Sub
Private Sub Inventory(ByVal cost, ByVal count)
count +=3
cost *=1.3
End Sub
Answers
Answered by
mike
34
There are no AI answers yet. The ability to request AI answers is coming soon!
Submit Your Answer
We prioritize human answers over AI answers.
If you are human, and you can answer this question, please submit your answer.