Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我想制作一个按钮,该按钮以 Visual Basic .NET 中的数字输入的频率运行动作。我该怎么做?有人可以指出这种动作的语法吗?
@Jon,我认为那是 C++,我说的是 VB.Net。
@Adam Davis,VB.Net 3.5,我想做的就是使用“NumericUpDown”中的一个数字来为按钮提供按钮必须执行多少次操作。
Dim i as integer For (i = 1 To InputNumber) 'Code here Next
这应该可以解决问题。
For i As Integer = 0 To CInt(NumericUpDown1.Value) 'Code to execute Next