vb6 - 如何找到控制数组中最大的元素索引?
我正在动态加载和卸载表单上的一组命令按钮。
我可以这样做:
Dim UnloadIndex As Integer
For UnloadIndex = 1 To 20
Unload frmMain.cmdAction(UnloadIndex)
Next
但我并不总是有 20 个元素。有没有办法循环遍历每个直到到达末尾?
我知道我可以使用全局变量并跟踪该值,但我试图避免这种情况。
有什么建议请...
I am dynamically loading and unloading an array of command buttons on a form.
I can do this:
Dim UnloadIndex As Integer
For UnloadIndex = 1 To 20
Unload frmMain.cmdAction(UnloadIndex)
Next
But I don't always have 20 elements. Is there a way to loop through each one until it reaches the end?
I know I can use a global variable and track the value but I'm trying to avoid this.
Any suggestions please...
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
使用
UBound()
返回指定维度的最高可用下标一个数组。
Use
UBound()
which returns the highest available subscript for the indicated dimension ofan array.
如果它们不是连续的,您也可以这样做:
If they're not sequential, you could also do:
我发现接受的答案方式给出了编译错误
使用点表示法对我有用。
I found that the accepted answer way gives a compile error
Using dot notation instead worked for me.