如何编辑VB6集合中的项目
你能告诉我如何编辑VB6集合中的项目吗? 前任- 我有以下集合 -
Dim OrdLines As New Collection
OrdLines.Add (111)
OrdLines.Add (111)
OrdLines.Add (222)
OrdLines.Add (333)
OrdLines.Add (444)
现在我的要求是编辑第 3 项并想要更改它,比如说“ABC”我该怎么做。
Can you please tell me how to edit item in VB6 collection.
Ex-
I have following collection -
Dim OrdLines As New Collection
OrdLines.Add (111)
OrdLines.Add (111)
OrdLines.Add (222)
OrdLines.Add (333)
OrdLines.Add (444)
Now my requirement is to edit item 3 and wants to change it let's say "ABC" How can I do this.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
我认为你不能。您必须删除该项目并重新添加修改后的项目。
I think you can't. You must delete the item and re-add the modified item.
您可以通过引用检索对象并修改它们:
SomeClass.cls
Form1.frm
You can retrieve objects by reference and modify them:
SomeClass.cls
Form1.frm