开发者

Auto increment textbox in VB.NET

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)
0

上一篇:

下一篇:

精彩评论

暂无评论...
验证码 换一张
取 消

最新问答

问答排行榜