tags:

views:

36

answers:

1

How do I get to increment a textbox content after clicking on a button?

+2  A: 

Place this in the button click event

Dim int As Integer
Integer.TryParse(TextBox1.Text, int)
TextBox1.Text = (int + 1)
astander