Follow along with the video below to see how to install our site as a web app on your home screen.
Not: This feature may not be available in some browsers.
Numeric up downa 2 tıkla bunları yapıştır
textbox1.Text = (int.Parse(numericupdown1.Value.ToString()) * 20).ToString()
Private Sub numericUpDown1_ValueChanged(sender As Object, e As EventArgs)
textBox1.Text = (numericUpDown1.Value * 20).ToString()
End Sub