take two numeric up down and add them quantity to text box

 Private Sub Button1_Click(sender As Object, e As EventArgs) Handles Button1.Click
        Dim intSum As Integer = 0
        Dim Int1 As Integer = CInt(NumericUpDown1.Value)
        Dim Int2 As Integer = CInt(NumericUpDown2.Value)
        TextBox1.Text = CStr((Int1) + (Int2))
    End Sub
Be a part of the DaniWeb community

We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.