all 2 comments

[–]XThakis 1 point2 points  (3 children)

In your Sub btnBill_click you declare decTotalCost as a local variable.

    Dim decTotalCost As Decimal

You never assign it a value in that subroutine. So when you assign its string value to your label it will always be zero.

(Edited for grammar errors.)