How do I get to increment a textbox content after clicking on a bu开发者_JAVA技巧tton?
Place this in the button click event
Dim int As Integer
Integer.TryParse(TextBox1.Text, int)
TextBox1.Text = (int + 1)
How do I get to increment a textbox content after clicking on a bu开发者_JAVA技巧tton?
Place this in the button click event
Dim int As Integer
Integer.TryParse(TextBox1.Text, int)
TextBox1.Text = (int + 1)
精彩评论