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
2010-03-14 11:10:32