我有一个名为ProgressBar
的{{1}}。我需要它来显示ProgressBar1
循环的进度。它一步一步很好,但最后我收到此错误“For Each
”无论我做什么,我都无法得到与Additional information: Value of '102' is not valid for 'Value'. 'Value' should be between 'minimum' and 'maximum'.
匹配的最终ProgressBar1.Value
。
这是我到目前为止的代码:
ProgressBar1.Value
答案 0 :(得分:4)
为什么不将最大值设置为数组的长度?
ProgressBar1.Maximum = tickerArray.Length
现在在循环中你可以将当前值增加1
ProgressBar1.Value += 1