Results 1 to 9 of 9

Thread: [RESOLVED] How do I Automatically update a text box, using a NumbericUpDown Box

Threaded View

  1. #1

    Thread Starter
    Junior Member
    Join Date
    Jan 2021
    Posts
    29

    Resolved [RESOLVED] How do I Automatically update a text box, using a NumbericUpDown Box

    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
    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
    Does anyone have any help?
    Last edited by dday9; Jan 13th, 2021 at 10:22 PM.

Tags for this Thread

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  



Click Here to Expand Forum to Full Width