I'm trying to make my program so it auto updates the price in the text boxes for this "Pod" whenever I increase or decrease the value of the NumericUpDown box.
People.Value is the NumericUpDown Box
'Calculating and Displaying Prices for Liverpool Pod
Does anyone have any help?
People.Value is the NumericUpDown Box
'Calculating and Displaying Prices for Liverpool Pod
Code:
If cboxPod.Text = "Liverpool" = True And People.Value >= 0 Then
TotalPrice.Text = "£" & (9 * People.Value)
VAT.Text = ("£" & TotalPrice.Text * 0.2)
Subtotal.Text = ("£" & TotalPrice.Text * 0.8)
End If