开发者

Auto increment textbox in VB.NET

开发者 https://www.devze.com 2022-12-23 01:17 出处:网络
How do I get to increment a textbox content after clicking on a bu开发者_JAVA技巧tton?Place this in the button click event

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

精彩评论

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